DBA Data[Home] [Help]

PACKAGE: OLAPSYS.CWM$EXPORT

Source


1 package cwm$export as
2 
3   -- Generate a script of API calls to recreate the contents of the repository.
4   --
5   -- param script               handle to database clob containing script
6   procedure export_all(script out nocopy clob);
7 
8   -- Generate a script of API calls to recreate the contents of a catalog
9   --
10   -- param catalog_id          the id of the catalog to export
11   -- param script               handle to database clob containing script
12   procedure export_catalog(catalog_id number, script out nocopy clob);
13 end;