Skip Headers
Oracle® OLAP DML Reference
11g Release 1 (11.1)

Part Number B28126-01
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Index
Index
Go to Master Index
Master Index
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
View PDF

CONVERT Procedure

The CONVERT procedure converts an analytic workspace to the most recent release format that is supported by the compatibility mode.

Note:

You cannot execute this procedure from within the OLAP Worksheet. You must execute if in a SQL tool such as SQL*Plus.

Syntax

CONVERT (
          original_aw      IN VARCHAR2);
CONVERT ( 
          original_aw      IN VARCHAR2,
          converted_aw     IN VARCHAR2,
          tablespace       IN NUMBER DEFAULT);

Parameters

Table B-19 CONVERT Procedure Parameters

Parameter Description

original_aw

The analytic workspace you wish to convert.

converted_aw

The converted analytic workspace.

tablespace

The name of a tablespace in which the converted workspace will be stored. If this parameter is omitted, then the analytic workspace is created in the user's default tablespace.


Example

This example performs the conversion in a single step, using the analytic workspace as both the source and the target of the conversion.

SQL>execute dbms_aw.convert ('myaw_aw');

The next example performs the conversion in several steps. The converted workspace must have the same name as the original workspace, because the fully-qualified names of objects in the workspace include the workspace name.

SQL>execute dbms_aw.rename ('myaw_aw', 'myaw_aw_temp');
SQL>execute dbms_aw.convert ('myaw_aw_temp', 'myaw_aw');
SQL>execute dbms_aw.delete ('myaw_aw_temp');