Oracle® OLAP DML Reference 11g Release 1 (11.1) Part Number B28126-01 |
|
|
View PDF |
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 |
---|---|
|
The analytic workspace you wish to convert. |
|
The converted analytic workspace. |
|
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');