Oracle® Warehouse Builder OMB*Plus Command Reference 11g Release 2 (11.2) E14406-01 |
|
|
Mobi · ePub |
createImportActionPlanCommand = ( OMBCREATE TRANSIENT IMPORT_ACTION_PLAN "QUOTED_STRING" { "addActionClause" } ) addActionClause = ADD ACTION "QUOTED_STRING" ( "setPropertiesClause" [ "setRefSourceAndTargetClause" ] | "setRefSourceAndTargetClause" ) setPropertiesClause = SET PROPERTIES "(" "propertyNameList" ")" VALUES "(" "propertyValueList" ")" setRefSourceAndTargetClause = SET ( REF | REFERENCE ) "sourcesClause" SET ( REF | REFERENCE ) "targetClause" propertyNameList = "UNQUOTED_STRING" { "," "UNQUOTED_STRING" } propertyValueList = "propertyValue" { "," "propertyValue" } sourcesClause = SOURCE "ObjType" "QUOTED_STRING" [ SET ( REF | REFERENCE ) "sourcesClause" ] targetClause = TARGET "ObjType" "QUOTED_STRING" propertyValue = ( "QUOTED_STRING" | "INTEGER_LITERAL" | "FLOATING_POINT_LITERAL" )
This command is for creating a transient import action plan, which is composed of a set of import actions. Each import action includes specification of source objects from which metadata will be extracted and one target object, into which the metadata will be added.
For setting any properties for the import action. For the current release, there are no predefined property for import actions.
For specifying source and target objects for the import action. The source objects are to be imported into target.
For specifying source objects in an import action. Valid object types are as follows.
TABLE
VIEW
SEQUENCE
MATERIALIZED_VIEW
EXTERNAL_TABLE
ADVANCED_QUEUE
QUEUE_TABLE
OBJECT_TYPE
VARRAY
NESTED_TABLE
DIMENSION
CUBE
FUNCTION
PROCEDURE
PACKAGE
The name of the source object. Note that the name of the source object must be qualified with schema name, such as 'SCOTT.EMP'.
For importing into a transportable module, the object specification requires an optional tablespace name qualifier, such as 'USERS.SCOTT.EMP' or 'DEFAULT.SCOTT.EMP'. The tablespace name is required because schemas are listed under tablespaces in the transportable module tree in OWB designer console. If 'DEFAULT' is specified as tablespace name, then the default tablespace name of the schema is used. If the tablespace name is ommitted, then the following rule is used to deduce the appropriate tablespace name.
First, if the object is a database segment (i.e., table and materialized view), then use the tablespace name of the tablespace where the segment resides.
Second if the object is not a database segment, then the default tablespace name for the schema is used, i.e., it is equivalent to specifying 'DEFAULT' as tablespace name.