Oracle® OLAP DML Reference 11g Release 1 (11.1) Part Number B28126-01 |
|
|
View PDF |
The AW_COPY
procedure copies the object definitions and data from one analytic workspace into a new analytic workspace.
AW_COPY
detaches the original workspace and attaches the new workspace first with read/write access.
Note:
You cannot execute this procedure from within the OLAP Worksheet. You must execute if in a SQL tool such as SQL*Plus.See also:
"Managing Analytic Workspaces"Syntax
AW_COPY ( oldname IN VARCHAR2, newname IN VARCHAR2, tablespace IN VARCHAR2 DEFAULT NULL, partnum IN NUMBER DEFAULT 8);
Parameters
Table B-12 AW_COPY Procedure Parameters
Parameter | Description |
---|---|
|
The name of an existing analytic workspace that contains object definitions. The workspace cannot be empty. |
|
A name for the new analytic workspace that is a copy of oldname. |
|
The name of a tablespace in which newname will be stored. If this parameter is omitted, then the analytic workspace is created in the user's default tablespace. |
|
The number of partitions that will be created for the |
Example
The following command creates a new analytic workspace named DEMO
and copies the contents of MYAW
into it. The workspace is stored in a table named AW$DEMO
, which has three partitions and is stored in the user's default tablespace.
SQL>execute dbms_aw.aw_copy('myaw', 'demo', null, 3);