Skip Headers
Oracle® Warehouse Builder API and Scripting Reference
11g Release 1 (11.1)

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

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

13 OMBRETRIEVE FLAT_FILE_MODULE to OMBRETRIEVE VIEW

This chapter lists commands associated with OMBRETRIEVE in alphabetical order starting with OMBRETRIEVE FLAT_FILE_MODULE.


OMBRETRIEVE FLAT_FILE_MODULE

Purpose

Retrieve details from a flat file module.

Prerequisites

Should be in the context of a project.

Syntax

retrieveFlatFileModuleCommand =  OMBRETRIEVE FLAT_FILE_MODULE 
     "QUOTED_STRING" ( "getPropertiesClause" | "getReferenceLocationClause"
      | "getReferenceDefaultLocationClause" | 
     "getReferenceMetadataLocationClause" | "getReferenceIconSetClause" | 
     "getReferenceLocationsClause" )
getPropertiesClause =  GET PROPERTIES "(" "propertyNameList" ")"
getReferenceLocationClause =  GET ( REF | REFERENCE ) LOCATION
getReferenceDefaultLocationClause =  GET ( REF | REFERENCE ) DEFAULT 
     LOCATION
getReferenceMetadataLocationClause =  GET ( REF | REFERENCE ) 
     METADATA_LOCATION
getReferenceIconSetClause =  GET ( REF | REFERENCE ) ICONSET
getReferenceLocationsClause =  GET ( REF | REFERENCE ) LOCATIONS
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveFlatFileModuleCommand

Retrieve details from a flat file module.

QUOTED_STRING

The name of the flat file module to retrieve details from.

getPropertiesClause

Retrieve specified property values from the flat file module.

getReferenceLocationClause

Retrieve the name of the runtime location referenced by this flat file

module.

getReferenceDefaultLocationClause

Retrieve the default runtime location referenced by this flat file module.

getReferenceIconSetClause

Retrieve the icon set referenced by this flat file module.

getReferenceLocationsClause

Retrieve the runtime locations referenced by this flat file module.

propertyNameList

The names of the properties whose values you want to retrieve.

Basic properties for FLAT_FILE_MODULE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: NAME

Business name of the flat file module.

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the flat file module.

See Also

OMBRETRIEVE

OMBRETRIEVE FUNCTION

Purpose

Retrieve details of the Function.

Prerequisites

Should be in the context of a Oracle Module or Package or Transformation

Module.

A Transformation Module may be WB_CUSTOM_TRANS for Public Transformations

or WB_PREDEFINED_TRANS for Predefined Transformations.

WB_CUSTOM_TRANS may by modified by an administrator. WB_PREDEFINED_TRANS

may not be modified.

WB_CUSTOM_TRANS and WB_PREDEFINED_TRANS are not dependent on any project.

Syntax

retrieveFunctionCommand =  OMBRETRIEVE FUNCTION "QUOTED_STRING" ( 
     "getPropertiesClause" | "getFuncProcParameterClause" | 
     "getFuncProcParameterPositionClause" | "getFuncProcSignatureClause" | 
     "retrieveFuncProcParameterClause" | "getRelationalDependentsClause" | 
     "getReferenceIconSetClause" )
getPropertiesClause =  GET PROPERTIES "(" "propertyNameList" ")"
getFuncProcParameterClause =  GET PARAMETERS
getFuncProcParameterPositionClause =  GET PARAMETER AT POSITION 
     "INTEGER_LITERAL"
getFuncProcSignatureClause =  GET SIGNATURE
retrieveFuncProcParameterClause =  PARAMETER "QUOTED_STRING" 
     "getPropertiesClause"
getRelationalDependentsClause =  GET ( REF | REFERENCE ) ( TABLES | VIEWS |
      MATERIALIZED_VIEWS | SEQUENCES | FUNCTIONS | PROCEDURES | PACKAGES )
getReferenceIconSetClause =  GET ( REF | REFERENCE ) ICONSET
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveFunctionCommand

This command retrieves the details of a Function

QUOTED_STRING

Name of the existing Function or path to the Function.

getPropertiesClause

Used to get properties (core, user-defined) for function. Valid properties

are shown below:

Basic properties for FUNCTION:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Function

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Function

Name: RETURN_TYPE

Type: STRING

Valid Values: PLS_INTEGER, BINARY_INTEGER, BOOLEAN, NUMBER, FLOAT, CHAR,

VARCHAR, VARCHAR2, DATE

Default: NUMBER

Set the Return Type for Function

Name: IMPLEMENTATION

Type: STRING

Valid Values: N/A

Default: ''

Set the code for Function which is included global variable declaration and

code between BEGIN and END.

Name: IS_DETERMINISTIC

Type: BOOLEAN

Valid Values: true, false

Default: false

This setting helps the optimizer avoid redundant function calls.

Name: IS_PARALLEL_ENABLE

Type: BOOLEAN

Valid Values: true, false

Default: false

This option sets flag to a stored function can be used safely in the slave

sessions of parallel DML evaluations.

Basic properties for PARAMETER:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Parameter

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Parameter

Name: DATATYPE

Type: STRING

Valid Values: BINARY_DOUBLE, BINARY_FLOAT, BINARY_INTEGER, BLOB, BOOLEAN,

CHAR, CLOB, DATE, FLOAT, INTEGER, INTERVAL DAY TO SECOND, INTERVAL YEAR TO

MONTH, NCHAR, NCLOB, NUMBER, NVARCHAR2, PLS_INTEGER, RAW, TIMESTAMP,

TIMESTAMP WITH LOCAL TIME ZONE, TIMESTAMP WITH TIME ZONE, VARHCAR,

VARCHAR2, XMLTYPE

Default: NUMBER

Set the data type for Parameter

Name: IN_OUT

Type: STRING

Valid Values: IN, OUT, INOUT

Default: 'IN'

Set the parameter mode for Parameter

Name: DEFAULT_VALUE

Type: STRING

Valid Values: N/A

Default: ''

Set the default value for Parameter

Properties for FUNCTION:

Name: AUTHID

Type: STRING

Valid Values: Current_User, Definer, None

Default: None

Generate the transformation with selected AUTHID option. Function will be

executed with the permissions defined by the AUTHID clause rather than the

function owner's permissions.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

getFuncProcParameterClause

Get all the parameter names of the Function

getFuncProcParameterPositionClause

Get the parameter position of Function

getFuncProcSignatureClause

Get the complete signature of the Function which includes parameter names,

datatype, in/out type and default values

retrieveFuncProcParameterClause

Get the parameter information such as datatype, default value, in/out type

and position

QUOTED_STRING

Name of the existing Parameter

getRelationalDependentsClause

This clause retrieves referential dependencies to other relational objects.

propertyNameList

Comma separated list of property names. Property names are unquoted.

See Also

OMBRETRIEVE

OMBRETRIEVE GATEWAY_MODULE

Purpose

Retrieve details of a gateway module.

Prerequisites

Should be in the context of project.

Syntax

retrieveGatewayModuleCommand =  OMBRETRIEVE GATEWAY_MODULE "QUOTED_STRING" 
     ( "getPropertiesClause" | "getReferenceLocationClause" | 
     "getReferenceDefaultLocationClause" | 
     "getReferenceMetadataLocationClause" | "getReferenceIconSetClause" | 
     "getReferenceLocationsClause" )
getPropertiesClause =  GET PROPERTIES "(" "propertyNameList" ")"
getReferenceLocationClause =  GET ( REF | REFERENCE ) LOCATION
getReferenceDefaultLocationClause =  GET ( REF | REFERENCE ) DEFAULT 
     LOCATION
getReferenceMetadataLocationClause =  GET ( REF | REFERENCE ) 
     METADATA_LOCATION
getReferenceIconSetClause =  GET ( REF | REFERENCE ) ICONSET
getReferenceLocationsClause =  GET ( REF | REFERENCE ) LOCATIONS
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveGatewayModuleCommand

Specify the gateway module from which to retrieve details.

getPropertiesClause

Retrieve the properties of a gateway module.

Basic properties for GATEWAY_MODULE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the gateway module

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the gateway module

Name: GATEWAY_TYPE

Type: STRING

Valid Values: N/A

Default: N/A

Type of gateway module

getReferenceLocationClause

Retrieve the name of the runtime location referenced by this gateway

module.

getReferenceDefaultLocationClause

Retrieve the default runtime location referenced by this gateway module.

getReferenceIconSetClause

Retrieve the icon set referenced by this gateway module.

getReferenceLocationsClause

Retrieve the runtime locations referenced by this gateway module.

propertyNameList

A list of property names.

See Also

OMBRETRIEVE

OMBRETRIEVE ICONSET

Purpose

To retrieve the properties of an iconset.

Prerequisites

Any context.

Syntax

retrieveIconSetCommand =  OMBRETRIEVE ICONSET "QUOTED_STRING" GET 
     "getPropertiesClause"
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveIconSetCommand

This command retrieves the properties of an iconset.

QUOTED_STRING

The name of the iconset to retrive.

getPropertiesClause

This clause gets the values for a list of properties.

Basic properties for ICONSET:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the iconset

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the iconset

Name: BELONGS_TO_GROUP

Type: STRING

Valid Values: N/A

Default: ''

Name of the Group to which the iconset belongs

Name: CANVAS_ICON

Type: STRING

Valid Values: N/A

Default: ''

URL of the canvas icon (36x36)

Name: PALETTE_ICON

Type: STRING

Valid Values: N/A

Default: ''

URL of the palette icon (18x18)

Name: TREE_ICON

Type: STRING

Valid Values: N/A

Default: ''

URL of the tree icon (16x16)

propertyNameList

The list of properties.

See Also

OMBCREATE ICONSET, OMBALTER ICONSET, OMBDROP ICONSET, OMBLIST ICONSETS

OMBRETRIEVE IMPORT_ACTION_PLAN

Purpose

To display the details of a transient import action plan.

Prerequisites

In the context of a project.

Syntax

retrieveImportActionPlanCommand =  OMBRETRIEVE ( IMPORT_ACTION_PLAN ) 
     "QUOTED_STRING" ( "getActionsClause" | "retrieveActionClause" )
getActionsClause =  GET ACTIONS
retrieveActionClause =  ACTION "QUOTED_STRING" GET ( "getPropertiesClause" 
     | "getRefSourceOrTargetClause" )
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
getRefSourceOrTargetClause =  ( REF | REFERENCE ) ( SOURCE | TARGET )
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveImportActionPlanCommand

This command is for displaying details in an import action plan.

QUOTED_STRING

The name of the import action plan to be accessed.

getActionsClause

For listing actions in the import action plan.

retrieveActionClause

For displaying information of an action in the import action plan.

QUOTED_STRING

The name of the action to be accessed.

getPropertiesClause

For retrieving properties associated with the action. For the current

release, there are no predefined properties for import actions.

See Also

OMBCREATE IMPORT_ACTION_PLAN, OMBIMPORT

OMBRETRIEVE ITEM_FOLDER

Purpose

Retrieve details of an item folder.

Prerequisites

Should be in the context of a Business Definition Module or use the full

path.

Syntax

retrieveItemFolderCommand =  OMBRETRIEVE ITEM_FOLDER "QUOTED_STRING" ( 
     "retrieveItemFolderClause" | "retrieveItemFolderItemClause" | 
     "retrieveItemFolderJoinClause" | "retrieveItemFolderConditionClause" )
retrieveItemFolderClause =  GET ( "getPropertiesClause" | 
     "getReferenceIconSetClause" | "getItemFolderSCOClause" )
retrieveItemFolderItemClause =  ITEM "QUOTED_STRING" GET ( 
     "getPropertiesClause" | SOURCE_OBJECTS | ( REF | REFERENCE ) DEFINING 
     LISTS_OF_VALUES | ( REF | REFERENCE ) DEFINING ALTERNATIVE_SORT_ORDERS
      | ( REF | REFERENCE ) ORDERED ALTERNATIVE_SORT_ORDERS | ( REF | 
     REFERENCE ) LIST_OF_VALUES | ( REF | REFERENCE ) DRILL_TO_DETAIL | ( 
     REF | REFERENCE ) ALTERNATIVE_SORT_ORDER | ( REF | REFERENCE ) 
     DRILL_LEVELS | ( REF | REFERENCE ) LOCAL JOINS | ( REF | REFERENCE ) 
     REMOTE JOINS )
retrieveItemFolderJoinClause =  JOIN "QUOTED_STRING" ( 
     "retrieveItemFolderJoinComponentClause" | GET ( "getPropertiesClause" 
     | JOIN_COMPONENTS | ( REF | REFERENCE ) FOREIGN_KEY | ( REF | 
     REFERENCE ) ITEM_FOLDERS ) )
retrieveItemFolderConditionClause =  CONDITION "QUOTED_STRING" GET 
     "getPropertiesClause"
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
getReferenceIconSetClause =  ( REF | REFERENCE ) ICONSET
getItemFolderSCOClause =  ITEMS | JOINS | CONDITIONS | SOURCE_OBJECTS | ( 
     REF | REFERENCE ) USING JOINS | ( REF | REFERENCE ) BUSINESS_AREAS | (
      REF | REFERENCE ) ROLE | ( REF | REFERENCE ) LEVEL | DEPENDENTS
retrieveItemFolderJoinComponentClause =  JOIN_COMPONENT "QUOTED_STRING" GET
      ( "getPropertiesClause" | ( REF | REFERENCE ) LOCAL ITEM | ( REF | 
     REFERENCE ) REMOTE ITEM )
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveItemFolderCommand

To retrieve an item folder.

QUOTED_STRING

name of the item folder.

retrieveItemFolderClause

This clause retrieves the contents of an item folder.

GET

For an item folder, this clause retrieves the following

ITEMS retrieves the items in the item folder.

JOINS retrieves the joins in the item folder.

CONDITIONS retrieves the conditions in the item folder.

SOURCE_OBJECTS retrieves the objects the item folder is based on.

REF USING JOINS retrieves the join usages for the item folder.

REF BUSINESS_AREAS retrieves the business areas the item folder belongs to.

REF ROLE retrieves the dimension use reference for the item folder.

REF LEVEL retrieves the level reference for the item folder.

DEPENDENTS retrieves the dependents for the item folder.

retrieveItemFolderItemClause

Retrieves a specific item.

QUOTED_STRING

name of the item.

GET

For an item, this clause retrieves the following

SOURCE_OBJECT retrieves the object that the item is based on.

In the case of a complex item (i.e. an expression) the list of items

referenced by the current item

REF LIST_OF_VALUES retrieves the List of Values associated with the item.

REF DRILL_TO_DETAIL retrieves the Drill to Detail associated with the item.

REF ALTERNATIVE_SORT_ORDER retrieves the Alternative Sort Order associated

with the item.

REF DEFINING LISTS_OF_VALUES retrieves a list of Lists of Values that use

this Item to define their values.

REF DEFINING ALTERNATIVE_SORT_ORDERS retrieves a list of Alternative Sort

Orders that use this Item to define their values.

REF ORDERED ALTERNATIVE_SORT_ORDERS retrieves a list of Alternative Sort

Orders that use this Item to define their order.

REF DRILL LEVELS retrieves the list of Drill Levels that reference this

Item.

REF LOCAL JOINS retrieves the list of Join Components that reference this

Item as their local Item.

REF REMOTE JOINS retrieves the list of Join Components that reference this

Item as their remote Item.

retrieveItemFolderJoinClause

Retrieves a specific join.

QUOTED_STRING

name of the join.

GET

For join this clause retrieves the following

JOIN_COMPONENTS retrieves the list of Join Components of this Join.

REF FOREIGN KEY retrieves the foreign key associated with this join.

REF ITEM_FOLDERS retrieves the list of complex Item Folders that use this

Join to join their component Item Folders.

retrieveItemFolderConditionClause

Retrieves a specific condition.

QUOTED_STRING

name of the condition.

getPropertiesClause

Retrieves the properties of the object.

Basic properties for ITEM_FOLDER:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the item folder

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the item folder

Name: EXTERNAL_TABLE_NAME

Type: STRING(255)

Valid Values: N/A

Default: ''

The physical name for the corresponding table or view. This is

automatically set if the Folder is associated with a Table

Name: VISIBLE

Type: BOOLEAN

Valid Values: Y,N

Default: 'Y'

Whether the item folder should be visible to the user

Name: FOLDER_TYPE

Type: STRING(40)

Valid Values: SIMPLE, COMPLEX

Default: ''

The type of item folder

Basic properties for ITEM:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the item

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the item

Name: ALIGNMENT

Type: STRING(40)

Valid Values: GENERAL, LEFT, CENTER, RIGHT

Default: 'GENERAL'

The default alignment for displaying the item

Name: DISPLAY_CASE

Type: STRING(40)

Valid Values: GENERAL, LOWER, UPPER, INITCAPPED

Default: 'GENERAL'

How alphabetic characters should be displayed

Name: CASE_STORAGE

Type: STRING(40)

Valid Values: GENERAL, LOWER, UPPER, MIXED

Default: 'GENERAL'

How alphabetic characters are stored

Name: CONTENT_TYPE

Type: STRING(40)

Valid Values: No Value or FILE. For datatypes such as BLOB, it may contain

a file extension such as DOC, AVI, WAV, JPG

Default: ''

Details on whether the Item contains a file name or should be processed by

an external application

Name: DEFAULT_AGGREGATE

Type: STRING(255)

Valid Values: Detail, AVG, COUNT, MAX, MIN, SUM

Default: 'SUM' when the datatype is Numeric, 'Detail' otherwise

Name of the default rollup function for the item

Name: DEFAULT_POSITION

Type: STRING(40)

Valid Values: MEASURE, TOP OR SIDE, TOP, SIDE, PAGE

Default: 'MEASURE' when the datatype is NUMBER or FLOAT, 'TOP OR SIDE'

otherwise

Default position for the item

Name: REPLACE_NULL_WITH

Type: STRING(255)

Valid Values: N/A

Default: ''

The value to be displayed for null values

Name: FORMULA

Type: STRING

Valid Values: N/A

Default: ''

The text of the derivation expression for a derived item

Name: EXTERNAL_COLUMN_NAME

Type: STRING(255)

Valid Values: N/A

Default: ''

The external name of the corresponding column. This is automatically set

if the Item is is associated with a Column

Name: FORMAT_MASK

Type: STRING(255)

Valid Values: N/A

Default: ''

The display format mask for the item

Name: HEADING

Type: STRING(255)

Valid Values: N/A

Default: ''

The displayed heading text for the item

Name: DATATYPE

Type: STRING(40)

Valid Values: BINARY_DOUBLE, BINARY_FLOAT, BLOB, CHAR, CLOB, DATE, FLOAT,

INTEGER, INTERVAL DAY TO SECOND, INTERVAL YEAR TO MONTH

NCHAR, NCLOB, NUMBER, NVARCHAR2, RAW, SYS.ANYDATA, SYS.ROW_LCR, TIMESTAMP,

TIMESTAMP WITH LOCAL TIME ZONE

TIMESTAMP WITH TIME ZONE, UNSPECIFIED, VARCHAR, VARCHAR2, XMLTYPE,

SYS.XMLFORMAT, BLAST_ALIGN_PLSQLRECORDTYPE

SYS.LCR$_ROW_RECORD, BLAST_SQL_TABLE_OF_NUMBERS, SYS.XMLSEQUENCETYPE,

SYS_REFCURSOR, BLAST_MATCH_PLSQLRECORDTYPE

Default: 'VARCHAR2'

The datatype for the item

Name: VISIBLE

Type: BOOLEAN

Valid Values: Y,N

Default: 'Y'

Whether the item should be visible to the user

Name: MAX_CHAR_FETCHED

Type: Number

Valid Values: N/A

Default: ''

The maximum number of characters fetched for an item

Name: DEFAULT_WIDTH

Type: Number

Valid Values: N/A

Default: ''

The default number of characters to display

Name: WORD_WRAP

Type: BOOLEAN

Valid Values: Y,N

Default: 'N'

Whether wordwrap is allowed in the display

Basic properties for JOIN:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the join

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the join

Name: OUTER_JOIN_ON_MASTER

Type: BOOLEAN

Valid Values: Y,N

Default: 'N'

Whether detail rows with no related master row should be included in the

join

Name: OUTER_JOIN_ON_DETAIL

Type: BOOLEAN

Valid Values: Y,N

Default: 'N'

Whether master rows with no related detail rows should be included in the

join

Name: EXTERNAL_KEY_NAME

Type: STRING(255)

Valid Values: N/A

Default: ''

The external name of the corresponding foreign key. This is automatically

set if the Join is is associated with a Foreign Key

Name: DETAIL_ALWAYS_HAS_MASTER

Type: BOOLEAN

Valid Values: Y,N

Default: 'Y'

Whether every detail row must reference a unique master row

Name: ONE_TO_ONE

Type: BOOLEAN

Valid Values: Y,N

Default: 'N'

Whether a master row only ever has a single detail row

Basic properties for JOIN_COMPONENT:

Name: JOIN_OPERATOR

Type: STRING(200)

Valid Values: =, <>, <, <=, > or >=

Default: ''

Business name of the join

Basic properties for CONDITION:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the condition

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the condition

Name: MATCH_CASE

Type: BOOLEAN

Valid Values: Y,N

Default: 'Y'

Whether the case of alphabetic characters must match exactly

Name: FORMULA

Type: STRING

Valid Values: N/A

Default: ''

The expression for the condition

Name: MANDATORY

Type: BOOLEAN

Valid Values: Y,N

Default: 'N'

Whether the Condition is optional or mandatory

Properties for ITEM_FOLDER:

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

Location for the referenced database object

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts

to create an object only for those objects marked as Deployable = true

Name: OPTIMIZER_HINT

Type: STRING

Valid Values: N/A

Default: ''

Optimizer Hint to be added when this Item Folder is used in a query

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

getReferenceIconSetClause

Get specified Icon Set.

getItemFolderSCOClause

Retrieves the contents of the item folder.

retrieveItemFolderJoinComponentClause

Retrieves the join components.

QUOTED_STRING

name of the condition.

GET

For join component this clause retrieves the following

REF LOCAL ITEM retrieves the local item used in the join.

REF REMOTE ITEM retrieves the remote item used in the join.

propertyNameList

This is the list of property names.

See Also

OMBALTER ITEM_FOLDER, OMBCREATE ITEM_FOLDER

OMBRETRIEVE LIST_OF_VALUES

Purpose

Retrieve details of a List Of Values.

Prerequisites

Should be in the context of a Business Definition Module or use the full

path.

Syntax

retrieveListOfValuesCommand =  OMBRETRIEVE LIST_OF_VALUES "QUOTED_STRING" 
     "retrieveListOfValuesClauseDetails"
retrieveListOfValuesClauseDetails =  GET ( 
     "getPropertiesClauseforLOVandD2D" | "getReferenceIconSetClause" | ( 
     REF | REFERENCE ) DEFINING ITEM | ( REF | REFERENCE ) ITEMS | 
     DEPENDENTS )
getPropertiesClauseforLOVandD2D =  PROPERTIES "(" 
     "propertyNameListforLOVandD2D" ")"
getReferenceIconSetClause =  ( REF | REFERENCE ) ICONSET
propertyNameListforLOVandD2D =  ( "UNQUOTED_STRING" | DRILL_TO_DETAIL ) { 
     "," ( "UNQUOTED_STRING" | DRILL_TO_DETAIL ) }

Keywords And Parameters

retrieveListOfValuesCommand

Retrieves the list of values.

QUOTED_STRING

name of the list of values.

retrieveListOfValuesClauseDetails

This clause retrieves the contents of a list of values.

GET

This clause retrieves the following

REF DEFINING ITEM retrieves the Item that holds the individual values for

this list of values.

REF ITEMS retrieves the list of Items that use this list of values.

DEPENDENTS retrieves a list of Item Folders that the list of values depends

on.

(This will return the Item Folder containing the Values Item).

getPropertiesClauseforLOVandD2D

This clause gets the properties of the object.

Basic properties for LIST_OF_VALUES:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the list of values

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the list of values

Name: DRILL_TO_DETAIL

Type: Boolean

Valid Values: Y,N

Default: 'N'

Whether the list of values enables drilling between the item folders

containing the items that use the list of values

Name: RETRIEVE_VALUES_GROUP_SIZE

Type: Number

Valid Values: N/A

Default: '100'

The number of rows to be fetched from the database at a time

Name: CACHE_VALUES

Type: Boolean

Valid Values: Y,N

Default: 'Y'

Whether the list of values should be cached in memory

Name: REQUIRE_SEARCH

Type: Boolean

Valid Values: Y,N

Default: 'N'

Whether search criteria should be requested

Name: SHOW_IN_NAVIGATOR

Type: Boolean

Valid Values: Y,N

Default: 'Y'

Whether the values should be shown in the item navigator

Name: SORTED_DISTINCT

Type: Boolean

Valid Values: Y,N

Default: 'Y'

Whether the values should be displayed sorted with duplicates hidden

Properties for LIST_OF_VALUES:

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts

to create an object only for those objects marked as Deployable = true

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

getReferenceIconSetClause

Get specified Icon Set.

propertyNameListforLOVandD2D

This is the list of property names.

See Also

OMBALTER LIST_OF_VALUES, OMBCREATE LIST_OF_VALUES

OMBRETRIEVE LOCATION

Purpose

Retrieve details of the location.

Prerequisites

Can be in any context.

Syntax

retrieveLocationCommand =  OMBRETRIEVE LOCATION "QUOTED_STRING" ( 
     "getPropertiesClause" | "getReferenceIconSetClause" )
getPropertiesClause =  GET PROPERTIES "(" "propertyNameList" ")"
getReferenceIconSetClause =  GET ( REF | REFERENCE ) ICONSET
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveLocationCommand

Retrieve details of the named location.

getPropertiesClause

Get specified properties of the location.

getReferenceIconSetClause

Get specified Icon Set.

propertyNameList

The names of the properties whose values you want to retrieve.

Properties for LOCATION:

Basic properties:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the location.

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the location.

Name: TYPE

Type: STRING

Valid Values:

'CONCURRENT_MANAGER'

'AUTOSYS_AGENT'

'AUTOSYS_INSTANCE'

'BIBEANS'

'DISCOVERER'

'FILE_SYSTEM'

'ORACLE_DATABASE'

'ORACLE_GATEWAY'

'ORACLE_WORKFLOW'

'SAP'

'TRANSPORTABLE_MODULE_SOURCE'

'TRANSPORTABLE_MODULE_TARGET'

Default: N/A

The type of system the location represents.

Name: VERSION

Type: STRING

Valid Values:

for 'CONCURRENT_MANAGER' : '11i'

for 'AUTOSYS_AGENT' : '0'

for 'AUTOSYS_INSTANCE' : '0'

for 'BIBEANS' : '10.1'

for 'DISCOVERER' : '10.1'

for 'FILE_SYSTEM' : do not set version

for 'ORACLE_DATABASE' : '8.1','9.0','9.2','10.1','10.2', '11.1'

for 'ORACLE_GATEWAY' : do not set version

for 'ORACLE_WORKFLOW' : '2.6.2','2.6.3','2.6.4','11i'

for 'SAP' : '4.x','3.x'

for 'TRANSPORTABLE_MODULE_SOURCE' : '8.1','9.0','9.2','10.1','10.2', '11.1'

for 'TRANSPORTABLE_MODULE_TARGET' : '8.1','9.0','9.2','10.1','10.2', '11.1'

Default: N/A

The version of the system(s) the location represents.

Lists of available properties for different types of LOCATION:

for 'CONCURRENT_MANAGER' :

TYPE,PASSWORD,HOST,PORT,SERVICE_NAME,NET_SERVICE_NAME,SCHEMA,VERSION,APPLICATION,APPLICATION_USER,RESPONSIBILITY

for 'AUTOSYS_AGENT':

TYPE,VERSION,PASSWORD,HOST

for 'AUTOSYS_INSTANCE':'

TYPE,VERSION,USER (or USER_NAME),PASSWORD,INSTANCE

for 'BIBEANS':

TYPE,VERSION,USER (or

USER_NAME),PASSWORD,HOST,PORT,SERVICE_NAME,NET_SERVICE_NAME

for 'DISCOVERER':

TYPE,VERSION,USER (or

USER_NAME),PASSWORD,HOST,PORT,SERVICE_NAME,NET_SERVICE_NAME

for 'FILE_SYSTEM':

TYPE,USER (or USER_NAME),PASSWORD,HOST,ROOTPATH

for 'ORACLE_DATABASE':

TYPE,VERSION,CONNECT_AS_USER (or

USER_NAME),PASSWORD,HOST,PORT,SERVICE_NAME,NET_SERVICE_NAME,DATABASE_NAME,SCHEMA

for 'ORACLE_GATEWAY':

TYPE,CONNECT_AS_USER (or

USER_NAME),PASSWORD,HOST,PORT,SERVICE_NAME,NET_SERVICE_NAME,SCHEMA

for 'ORACLE_WORKFLOW':

TYPE,VERSION,PASSWORD,HOST,PORT,SERVICE_NAME,NET_SERVICE_NAME,SCHEMA

for 'SAP':

TYPE, VERSION, USER (or USER_NAME), PASSWORD, APPLICATION_SERVER,

SYSTEM_NUMBER, CLIENT, LANGUAGE, HOST_LOGIN_USER, HOST_LOGIN_PASSWORD,

FTP_DIRECTORY, EXECUTION_FM

for 'TRANSPORTABLE_MODULE_SOURCE':

TYPE, VERSION,CONNECT_AS_USER (or

USER_NAME),PASSWORD,HOST,PORT,SERVICE_NAME,FTP_USER,FTP_PASSWORD

for 'TRANSPORTABLE_MODULE_TARGET':

TYPE, VERSION,CONNECT_AS_USER (or

USER_NAME),PASSWORD,HOST,PORT,SERVICE_NAME

Some other properties for LOCATIONs:

Name: CONNECTION_TYPE

Type: STRING

Valid Values: 'HOST_PORT_SERVICE', 'SQL_NET_CONNECTION', 'DATABASE_LINK'

Default: 'HOST_PORT_SERVICE'

The location connection details format.

Name: HOST

Type: STRING

Valid Values: N/A

Default: N/A

The machine name.

Name: PORT

Type: NUMBER

Valid Values: 1 - 65535

Default: 1521

The port number of a database listener.

Name: SERVICE_NAME

Type: STRING

Valid Values: N/A

Default: N/A

The database service name.

Name: NET_SERVICE_NAME

Type: STRING

Valid Values: N/A

Default: N/A

The database netservice name.

Name: SCHEMA

Type: STRING

Valid Values: N/A

Default: N/A

The database schema name.

Name: PASSWORD

Type: STRING

Valid Values: N/A

Default: N/A

The password.

Name: USER

Type: STRING

Valid Values: N/A

Default: N/A

The user name.

Name: CONNECT_AS_USER

Synonym: USER_NAME

Type: STRING

Valid Values: N/A

Default: N/A

The user name.

Name: ROOTPATH

Type: STRING

Valid Values: N/A

Default: N/A

The file system directory.

Name: APPLICATION

Type: STRING

Valid Values: N/A

Default: N/A

The Application name.

Name: APPLICATION_USER

Type: STRING

Valid Values: N/A

Default: N/A

The user name.

Name: DATABASE_NAME

Type: STRING

Valid Values: N/A

Default: N/A

The Data Base name.

Name: RESPONSIBILITY

Type: STRING

Valid Values: N/A

Default: N/A

The resposibility role.

Name: APPLICATION_SERVER

Type: STRING

Valid Values: N/A

Default: N/A

The application server.

Name: SYSTEM_NUMBER

Type: STRING

Valid Values: N/A

Default: N/A

The number of SAP system.

Name: CLIENT

Type: STRING

Valid Values: N/A

Default: N/A

The client.

Name: LANGUAGE

Type: STRING

Valid Values: N/A

Default: N/A

The languge of SAP.

Name: HOST_LOGIN_USER

Type: STRING

Valid Values: N/A

Default: N/A

The user.

Name: HOST_LOGIN_PASSWORD

Type: STRING

Valid Values: N/A

Default: N/A

The password.

Name: EXECUTION_FM

Type: STRING

Valid Values: N/A

Default: N/A

RFC Function Module for remote ABAP report execution

Name: FTP_USER

Type: STRING

Valid Values: N/A

Default: N/A

The user name used for creating ftp connection.

Name: FTP_PASSWORD

Type: STRING

Valid Values: N/A

Default: N/A

The ftp password.

Name: FTP_DIRECTORY

Type: STRING

Valid Values: N/A

Default: N/A

The directory used in a ftp session

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

See Also

OMBRETRIEVE

OMBRETRIEVE MAPPING

Purpose

Retrieve mapping details such as the number of operators and their connections.

Prerequisites

The current context must be in an Oracle Module.

Syntax

retrieveMappingCommand =  OMBRETRIEVE MAPPING "mappingName" ( 
     "retrieveOperatorOwnerDetailClause" | "testConnectionClause" )
mappingName =  "QUOTED_STRING"
retrieveOperatorOwnerDetailClause =  GET ( PROPERTIES "propertyKeyList" | 
     "getReferenceIconSetClause" | [ "operatorType" ] OPERATORS [ 
     "connectionConditionClause" ] | "childType" ) | "getChildDetailClause"
      | "operatorLocator" "getOperatorDetailClause"
testConnectionClause =  HAS CONNECTION FROM "mappableBottomUpLocator" TO 
     "mappableBottomUpLocator"
propertyKeyList =  "(" "propertyKey" { "," "propertyKey" } ")"
getReferenceIconSetClause =  ( REF | REFERENCE ) ICONSET
operatorType =  PLUGGABLE_MAPPING | "UNQUOTED_STRING"
connectionConditionClause =  CONNECTED ( FROM "mappableBottomUpLocator" | 
     TO "mappableBottomUpLocator" )
childType =  "UNQUOTED_STRING"
getChildDetailClause =  ( "childType" "childName" )+ GET ( PROPERTIES 
     "propertyKeyList" | "childType" )
operatorLocator =  [ "pluggableMapLocator" ] OPERATOR "operatorName"
getOperatorDetailClause =  GET ( PROPERTIES "propertyKeyList" | [ 
     "groupDirection" ] GROUPS [ "connectionConditionClause" ] | 
     BOUND_OBJECT | "childType" ) | "getChildDetailClause" | "groupLocator"
      "getGroupDetailClause"
mappableBottomUpLocator =  "operatorBottomUpLocator" | 
     "groupBottomUpLocator" | "attributeBottomUpLocator"
propertyKey =  "UNQUOTED_STRING"
childName =  "QUOTED_STRING"
pluggableMapLocator =  ( PLUGGABLE_MAPPING "pluggableMapName" [ 
     "pluggableMapLocator" ] )
operatorName =  "QUOTED_STRING"
groupDirection =  INPUT | OUTPUT | INPUT_OUTPUT
groupLocator =  GROUP "groupName"
getGroupDetailClause =  GET ( PROPERTIES "propertyKeyList" | ATTRIBUTES [ 
     "connectionConditionClause" ] | "childType" ) | "getChildDetailClause"
      | "attributeLocator" "getAttributeDetailClause"
operatorBottomUpLocator =  OPERATOR "operatorName" [ 
     "pluggableMapBottomUpLocator" ]
groupBottomUpLocator =  GROUP "groupName" OF "operatorBottomUpLocator"
attributeBottomUpLocator =  ATTRIBUTE "attributeName" OF 
     "groupBottomUpLocator"
pluggableMapName =  "QUOTED_STRING"
groupName =  "QUOTED_STRING"
attributeLocator =  ATTRIBUTE "attributeName"
getAttributeDetailClause =  GET ( PROPERTIES "propertyKeyList" | 
     BOUND_OBJECT | "childType" ) | "getChildDetailClause"
pluggableMapBottomUpLocator =  ( OF PLUGGABLE_MAPPING "pluggableMapName" [ 
     "pluggableMapBottomUpLocator" ] )
attributeName =  "QUOTED_STRING"

Keywords And Parameters

retrieveMappingCommand

Retrieve the detail of a mapping such as how many mapping operators are

there or which mapping operators are connected to each other.

mappingName

Name of the mapping.

retrieveOperatorOwnerDetailClause

Retrieve the desired detail of a mapping or a pluggable mapping.

testConnectionClause

Verify if there is a connection between mapping operators, mapping groups

or mapping attributes.

propertyKeyList

The list of property keys.

operatorType

Type of a mapping operator. The following operator types are available:

ADVANCED_QUEUE, AGGREGATOR, ANYDATA_CAST, CONSTANT, CONSTRUCT_OBJECT, CUBE,

DATA_GENERATOR, DEDUPLICATOR, DIMENSION, EXPAND_OBJECT, EXPRESSION,

EXTERNAL_TABLE, FILTER, FLAT_FILE, INPUT_PARAMETER, INPUT_SIGNATURE,

ITERATOROPERATOR, JOINER, KEY_LOOKUP, LCRCAST, LCRSPLITTER, MATCHMERGE,

MATERIALIZED_VIEW, NAME_AND_ADDRESS, OUTPUT_PARAMETER, OUTPUT_SIGNATURE,

PIVOT, PLUGGABLE_MAPPING, POSTMAPPING_PROCESS, PREMAPPING_PROCESS,

SEQUENCE, SET_OPERATION, SORTER, SPLITTER, TABLE, TABLE_FUNCTION,

TRANSFORMATION, UNPIVOT, VIEW.

connectionConditionClause

List objects only if they are connected from or to objects specified in the

connection condition.

childType

Type of a child that belongs to map, mapping operator, mapping group or

mapping attribute.

getChildDetailClause

Get the desired detail of a child object that belongs to the mapping, map

variable, mapping operator, mapping group or mapping attribute.

operatorLocator

Location of a mapping operator.

getOperatorDetailClause

Get the desired detail of a mapping operator.

mappableBottomUpLocator

Location of the object to be bound to a mapping mapping operator or mapping

attribute.

propertyKey

A property key for an object.

Basic properties for MAPPING:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the mapping

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the mapping

Basic properties for OPERATOR:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the operator

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the operator

Basic properties for GROUP:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the group

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the group

Basic properties for ATTRIBUTE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the attribute

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the attribute

Name: DATATYPE

Type: STRING(20)

Valid Values: BINARY_DOUBLE, BINARY_FLOAT, BLOB, CHAR, CLOB, DATE, FLOAT,

INTEGER, INTERVAL DAY TO SECOND, INTERVAL YEAR TO MONTH, NCHAR, NCLOB,

NUMBER, NVARCHAR2, RAW, TIMESTAMP, TIMESTAMP WITH LOCAL TIME ZONE,

TIMESTAMP WITH TIME ZONE, VARHCAR, VARCHAR2, XMLTYPE

Default: ''

Datatype of the Attribute

Name: LENGTH

Type: NUMBER

Valid Values: N/A

Default: 0

Length of the attribute.

Name: PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

Precision of the attribute.

Name: SCALE

Type: NUMBER

Valid Values: N/A

Default: 0

Scale of the attribute.

Name: FRACTIONAL_SECONDS_PRECISION

Type: NUMBER

Valid Values: 0 - 9

Default: 0

The precision of a timestamp or interval.

Properties for MAPPING:

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

True if the map is deployable to a physical implementation

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Name: GENERATION_LANGUAGE

Type: STRING

Valid Values: ABAP, PLSQL, SQLLOADER, UNDEFINED

Default: UNDEFINED

The language used when generating code for the mapping.

Name: REFERRED_CALENDAR

Type: STRING

Valid Values: N/A

Default: ''

Enter the Schedule to associate with this object.

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Properties for GROUP:

Name: COMMANDTYPE

Type: STRING

Valid Values: ALL_COMMAND_TYPES, DELETE, INSERT, UPDATE

Default: ALL_COMMAND_TYPES

The operation causing the change described by the LCR

Name: DEFAULT_EXPIRATION_TIME_OF_OPEN_RECORD

Type: STRING

Valid Values: N/A

Default: NULL

A date value to be served as the expiration time of a newly created open

record.

Name: DIMENSION_KEY

Type: STRING(32)

Valid Values: N/A

Default: ''

The column in which dimension key value is to be stored when this is a

target of star schema.

Name: EXPRESSION_INOUT

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: EXPRESSION_OUT

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: EXTRACTING_TYPE

Type: STRING

Valid Values: FROM_ALL, FROM_CURRENT

Default: FROM_CURRENT

The extracting operation to be performed when this is a source. If Extract

Current Only (Type 2 Only) is specified, only current records will be

extracted. If Extract All is specified, all records will be extracted.

Name: GROUP_TYPE

Type: STRING

Valid Values: REF_CURSOR, SCALAR

Default: SCALAR

This property specifies whether the input parameter is a scalar or a ref

cursor type

Name: INTERNAL_TABLE

Type: STRING

Valid Values: N/A

Default: ''

Internal staging table for this operator group

Name: LEVEL_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The bound name of this level.

Name: MODULENAME

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: PARAMETER_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The position of the argument in the table function signature corresponding

to this parameter group

Name: RECORD_TYPE_VALUES

Type: STRING

Valid Values: N/A

Default: ''

Record Type Values.

Name: RETURN_TABLE_OF_SCALAR

Type: BOOLEAN

Valid Values: true, false

Default: false

This property specifies whether the return of the table function is a TABLE

of SCALAR or not.

Name: ROW_LOCATOR

Type: STRING

Valid Values: N/A

Default: ''

An expression indicating which attribute within the input group is the row

locator.

Name: ROW_LOCATOR_VALUES

Type: STRING

Valid Values: N/A

Default: NULL, NULL

A comma-separated expressions that gives the possible values of the row

locator within a unpivot group.

Name: SLOWLY_CHANGING_TYPE

Type: STRING

Valid Values: TYPE1, TYPE2, TYPE3

Default: TYPE2

The slowly changing type of this target.

Name: SPLIT_CONDITION

Type: STRING

Valid Values: N/A

Default: ''

Condition that defines when to perform the attribute maps for the

attributes in this group.

Name: TABLENAME

Type: STRING

Valid Values: N/A

Default: ''

The source table corresponding to the LCR

Name: TARGET_TABLE_NAME

Type: STRING(32)

Valid Values: N/A

Default: ''

The table name bound to this target.

Properties for ATTRIBUTE:

Name: ADDRESS_TYPE

Type: STRING

Valid Values: NA_ADDRTYPE_DUAL, NA_ADDRTYPE_NORMAL

Default: NA_ADDRTYPE_NORMAL

You can designate an address type as Normal or Dual. For example, a dual

address occurs when a record contains both a street address and a P.O. Box;

this is common with business data. A normal address contains only one type

of address.

Name: ATTRIBUTE_ROLE

Type: STRING

Valid Values: END_DATE, LOOKUP_ACTIVE_DATE, MEASURE, NATURAL_KEY, NONE,

PARENT_NATURAL_KEY, PARENT_REF_KEY, PARENT_SURROGATE_KEY, PREV_VALUE,

START_DATE, SURROGATE_KEY, TRIGGER

Default: NONE

The type of role to indicate how this attribute will be used in history

logging. History As Previous Value indicates that this attribute will be

used to keep previous value. Surrogate Identifier indicates that this

attribute will be used to keep the surrogate identifier. Natural Identifier

indicates that this attribute will be used to keep the natural identifier.

Effective Time indicates that this attribute will be used as the effective

time of the version. Expiration Time indicates that this attribute will be

used as the expiration time of the version. Trigger indicates that this

attribute will be used to trigger history logging. If none is specified,

this attribute will be used to keep current value.

Name: BINDING_COLUMN_NAME

Type: STRING

Valid Values: N/A

Default: ''

The binding column name for this attribute

Name: DATA_TYPE

Type: STRING

Valid Values: N/A

Default: ''

The data type of the attribute

Name: DEFAULT_VALUE

Type: STRING

Valid Values: N/A

Default: ''

The Default Value for the function input parameter

Name: DIMENSION_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The dimension attribute referenced to by this level attribute.

Name: EXPRESSION

Type: STRING

Valid Values: N/A

Default: ''

The output expression for the attribute

Name: FIELD_DATA_TYPE

Type: STRING

Valid Values: BYTEINT, CHAR, DATE, DECIMAL, DECIMAL EXTERNAL, DOUBLE,

FLOAT, FLOAT EXTERNAL, GRAPHIC, GRAPHIC EXTERNAL, INTEGER, INTEGER

EXTERNAL, INTEGER UNSIGNED, INTERVAL DAY TO SECOND, INTERVAL YEAR TO MONTH,

LONG VARRAW, RAW, SMALLINT, SMALLINT UNSIGNED, TIMESTAMP, TIMESTAMP WITH

LOCAL TIME ZONE, TIMESTAMP WITH TIME ZONE, VARCHAR, VARCHARC, VARGRAPHIC,

VARRAW, VARRAWC, ZONED, ZONED EXTERNAL

Default: CHAR

SQL Data Type of the field in the file to which this operator is bound.

Name: FIELD_DATA_TYPE_LENGTH

Type: NUMBER

Valid Values: N/A

Default: 0

Field Length of the field in the file to which this operator is bound.

Name: FIELD_DATA_TYPE_PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

Field Precision of the field in the file to which this operator is bound.

Name: FIELD_DATA_TYPE_SCALE

Type: NUMBER

Valid Values: N/A

Default: 0

Field Scale of the field in the file to which this operator is bound.

Name: FIELD_DEFAULTIF_VALUE

Type: STRING

Valid Values: N/A

Default: ''

The expression that indicates the value of the field is blank or zero,

based on the datatype.

Name: FIELD_END_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The ending position of the field in the file

Name: FIELD_MASK

Type: STRING

Valid Values: N/A

Default: ''

The mask for the field

Name: FIELD_NULLIF_VALUE

Type: STRING

Valid Values: N/A

Default: ''

The expression that indicates the value of the field is null

Name: FIELD_START_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The starting position of the field in the file

Name: FRACTIONAL_SECONDS_PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

The data fractional seconds precision value of the attribute

Name: FUNCTION_RETURN

Type: BOOLEAN

Valid Values: true, false

Default: false

Specifies whether this output is the return value of this function

Name: GROUP_KEY

Type: BOOLEAN

Valid Values: true, false

Default: false

A boolean value to indicate whether this input attribute is a part of the

unpivot group key.

Name: INPUT_ROLE

Type: STRING

Valid Values: NA_ADDRESS, NA_ADDRESS2, NA_CITY, NA_COUNTRYCODE,

NA_COUNTRYNAME, NA_FIRMNAME, NA_FIRSTNAME, NA_FIRSTPARTNAME, NA_LASTLINE,

NA_LASTLINE_2, NA_LASTNAME, NA_LASTPARTNAME, NA_LINE1, NA_LINE10, NA_LINE2,

NA_LINE3, NA_LINE4, NA_LINE5, NA_LINE6, NA_LINE7, NA_LINE8, NA_LINE9,

NA_LOCALITYNAME, NA_LOCALITY_2, NA_LOCALITY_3, NA_LOCALITY_4,

NA_MIDDLENAME, NA_MIDDLENAME2, NA_MIDDLENAME3, NA_NEIGHBORHOOD, NA_NONE,

NA_PASSTHRU, NA_PERSON, NA_PERSON2, NA_PERSON3, NA_POSTALCODE, NA_POSTNAME,

NA_PRENAME, NA_PRIMARYADDRESS, NA_SECONDARYADDRESS, NA_STATE

Default: NA_NONE

Assigns a name-address input role to the selected input attribute

Name: INSTANCE

Type: STRING

Valid Values: NA_INSTANCE_FIFTH, NA_INSTANCE_FIRST, NA_INSTANCE_FOURTH,

NA_INSTANCE_SECOND, NA_INSTANCE_SIXTH, NA_INSTANCE_THIRD

Default: NA_INSTANCE_FIRST

The instance option is used when an address contains multiple names, you

can specify which name in the group should be used. In addition, you can

use this option to assign an address type to a miscellaneous address

component.

Name: IS_CAST_TARGET

Type: BOOLEAN

Valid Values: true, false

Default: false

Description not available.

Name: IS_OPTIONAL

Type: BOOLEAN

Valid Values: true, false

Default: false

If true, the input is not required to be connected

Name: IS_PREDEFINED_CONSTANT

Type: BOOLEAN

Valid Values: true, false

Default: false

Description not available.

Name: LENGTH

Type: NUMBER

Valid Values: N/A

Default: 0

The data length value of the attribute

Name: LEVEL_ATTRIBUTE_COLNAME_NAME

Type: STRING

Valid Values: N/A

Default: ''

Column name in the AW staging table and source view for this attribute.

Name: LEVEL_ATTRIBUTE_LEVEL_INDICATOR_COLNAME

Type: STRING

Valid Values: N/A

Default: ''

Level indicating columns name. This level will contain the name of the name

of the level this parent reference belongs to. This is relavant only for

skip level hierarchies.

Name: LEVEL_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name of the Level Attribute.

Name: LEVEL_RELATIONSHIP_NAME

Type: STRING

Valid Values: N/A

Default: ''

The level relationship name associated to this attribute.

Name: LOAD_COLUMN_WHEN_INSERTING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will particiate in the

insert load operation.

Name: LOAD_COLUMN_WHEN_UPDATING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will particiate in the

update load operation.

Name: LOOKUP_ATTRIBUTE_ROLE

Type: STRING

Valid Values: DIMENSION_KEY, END_DATE, NATURAL_KEY, NONE, PREV_VALUE,

START_DATE, SURROGATE_KEY, TRIGGER

Default: NONE

The type of role to indicate how this attribute will be used in history

logging. History As Previous Value indicates that this attribute will be

used to keep previous value. Surrogate Identifier indicates that this

attribute will be used to keep the surrogate identifier. Natural Identifier

indicates that this attribute will be used to keep the natural identifier.

Effective Time indicates that this attribute will be used as the effective

time of the version. Expiration Time indicates that this attribute will be

used as the expiration time of the version. Trigger indicates that this

attribute will be used to trigger history logging. If none is specified,

this attribute will be used to keep current value.

Name: MATCHING_ROW

Type: NUMBER

Valid Values: 1 - 1000

Default: 1

An positive integer to indicate from which row within the unpivot group

this output attribute obtains its data.

Name: MATCH_COLUMN_WHEN_DELETING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will be used to

construct the matching criteria between the incoming data and the existing

data on the target during the delete load operation.

Name: MATCH_COLUMN_WHEN_UPDATING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will be used to

construct the matching criteria between the incoming data and the existing

data on the target during the update load operation.

Name: MERGE_ATTR

Type: STRING

Valid Values: N/A

Default: ''

Related merge attribute

Name: OUTPUT_COMPONENT

Type: STRING

Valid Values: NA_ADDRESS, NA_ADDRESS2, NA_ADDRESSCORRECTED, NA_ADDRESSTYPE,

NA_AUTO_ZONE_IND, NA_BOXNAME, NA_BOXNUMBER, NA_BUILDINGNAME, NA_CART,

NA_CBSA_CODE, NA_CBSA_DESC, NA_CENSUSID, NA_CHECKDIGIT, NA_CITY,

NA_CITYCORRECTED, NA_CITYMATCH, NA_CITYWARNING, NA_CITY_ABBREV,

NA_CITY_ABBREV_2, NA_CITY_ALTERNATE, NA_COMPLEX, NA_COUNTRYCODE,

NA_COUNTRYCODE3, NA_COUNTRYNAME, NA_COUNTYNAME, NA_DELIVERYBEATCODE,

NA_DELIVERYOFFICECODE, NA_DELIVERYPOINT, NA_EMAIL, NA_EXTRA_1, NA_EXTRA_10,

NA_EXTRA_11, NA_EXTRA_12, NA_EXTRA_13, NA_EXTRA_14, NA_EXTRA_15,

NA_EXTRA_16, NA_EXTRA_17, NA_EXTRA_18, NA_EXTRA_19, NA_EXTRA_2,

NA_EXTRA_20, NA_EXTRA_3, NA_EXTRA_4, NA_EXTRA_5, NA_EXTRA_6, NA_EXTRA_7,

NA_EXTRA_8, NA_EXTRA_9, NA_FIPS, NA_FIPSCOUNTY, NA_FIPS_PLACE_CODE,

NA_FIRMCOUNT, NA_FIRMNAME, NA_FIRM_LOC, NA_FIRSTNAME, NA_FIRSTNAMESTD,

NA_GENDER, NA_GEO_MATCH_PREC, NA_INSTALLATIONNAME, NA_INSTALLATIONTYPE,

NA_ISADDRESSVERIFIABLE, NA_ISFOUND, NA_ISGOODADDRESS, NA_ISGOODGROUP,

NA_ISGOODNAME, NA_ISPARSED, NA_LACS, NA_LASTLINE, NA_LASTLINE_2,

NA_LASTNAME, NA_LATITUDE, NA_LOCALITYCODE, NA_LOCALITYNAME, NA_LOCALITY_2,

NA_LOCALITY_3, NA_LOCALITY_4, NA_LONGITUDE, NA_LOT, NA_LOT_ORDER, NA_MCD,

NA_MIDDLENAME, NA_MIDDLENAME2, NA_MIDDLENAME2STD, NA_MIDDLENAME3,

NA_MIDDLENAME3STD, NA_MIDDLENAMESTD, NA_MISCADDRESS, NA_MSA,

NA_NAMEDESIGNATOR, NA_NAMEWARNING, NA_NAME_FIRM_EXTRA, NA_NEIGHBORHOOD,

NA_NONAMBIGUOUSMATCH, NA_NONE, NA_NP_SEC_ADDR, NA_NP_UNIT_DESIG,

NA_NP_UNIT_NBR, NA_OTHERPOSTNAME, NA_PARSESTATUS, NA_PARSESTATUSDESC,

NA_PARSINGCOUNTRY, NA_PASSTHRU, NA_PERSON, NA_PERSONCOUNT, NA_PHONE,

NA_POSTALCODE, NA_POSTALCODECORRECTED, NA_POSTALCODEFORMATTED,

NA_POSTDIRECTIONAL, NA_POSTNAME, NA_PREDIRECTIONAL, NA_PRENAME,

NA_PRIMARYADDRESS, NA_PRIM_NAME_2, NA_RELATIONSHIP, NA_ROUTENAME,

NA_ROUTENUMBER, NA_SECONDARYADDRESS, NA_SSN, NA_STATE,

NA_STREETCOMPCORRECTED, NA_STREETCOMPMATCH, NA_STREETCORRECTED,

NA_STREETNAME, NA_STREETNAMEMATCH, NA_STREETNUMBER, NA_STREETNUMBERMATCH,

NA_STREETTYPE, NA_STREETWARNING, NA_TITLE, NA_UNITDESIGNATOR,

NA_UNITNUMBER, NA_URBANIZATIONNAME, NA_URBAN_IND, NA_ZIP4, NA_ZIP5

Default: NA_NONE

Assigns a Name and Address output component to the selected output

attribute.

Name: PARAMETER_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The position of the argument in the table function signature corresponding

to this parmater

Name: PIVOT_EXPRESSION

Type: STRING

Valid Values: N/A

Default: ''

A comma-separated expression that gives the input attribute to be used for

each output row in the pivot group.

Name: PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

The data precision value of the attribute

Name: REFERENCED_LEVEL_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The bound name of the parent level attribute associated to this attribute.

Name: REFERENCED_LEVEL_NAME

Type: STRING

Valid Values: N/A

Default: ''

The bound name of the parent level group associated to this attribute.

Name: REFERENCING_TYPE

Type: STRING

Valid Values: LOOKUP_KEY, NONE, REFERENCE_KEY_ALL, REFERENCE_KEY_ONLY

Default: NONE

The type of reference to indicate how this attribute participates in

resolving existing level relationships and level implementations. If Lookup

Reference Attribute is specified, this attribute will be used as lookup

attribute upon parent level to resolve level implementations during

loading. If Level Relationship Attribute (Snowflake) is specified, this

attribute will be directly used as level relationship attribute and no

lookup upon parent level would be performed during loading. If Level

Relationship Attribute (Star) is specified, this attribute will be directly

used as level relationship attribute, as well as lookup attribute upon

parent level to resolve level implementations during loading. If none is

specified, this attribute does not participate in any level relationship.

Name: SCALE

Type: NUMBER

Valid Values: N/A

Default: 0

The data scale value of the attribute

Name: SKIP_LEVEL_DIMENSION

Type: STRING

Valid Values: NO, YES

Default: NO

Indicates whether this level has a skip level parent.

Name: TYPE_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name of the field of the PLS Record or attribute of the Object Type or

column of the ROWTYPE that corresponds to this attribute. This property is

not applicable if the return type is TABLE of SCALAR.

Name: UNPIVOT_EXPRESSION

Type: STRING

Valid Values: N/A

Default: NULL

An expression that gives the input attribute to be used as the output of

this attribute.

Name: UPDATE_OPERATION

Type: STRING(3)

Valid Values: +=, -=, =, =-, =||, ||=

Default: =

The computation to be performed on this attribute between the incoming data

and the existing data on the target during the update load operation.

Name: VALUETYPE

Type: STRING

Valid Values: NEW, NEW_OLD, OLD

Default: NEW_OLD

Specifies the value type of this attribute

Properties for AGGREGATOR_OPERATOR:

Name: GROUP_BY_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

The Group By clause for the aggregation

Name: HAVING_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

The Having clause for the aggregation

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Properties for CONSTRUCT_OBJECT_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Properties for CUBE_OPERATOR:

Name: ALLOW_PARALLEL_SOLVE

Type: BOOLEAN

Valid Values: true, false

Default: false

If true, allow parallel solve when solving the cube.

Name: AW_STAGED_LOAD

Type: BOOLEAN

Valid Values: true, false

Default: false

If true, the set-based AW load data is staged into a temporary table before

loading into the AW.

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: CUBE_STORAGE_ISAW

Type: STRING

Valid Values: NO, YES

Default: NO

Indicates whether the storage for this cube in AW.

Name: DIMENSION_AWNAME

Type: STRING

Valid Values: N/A

Default: ''

AW Name which contains this Dimension.

Name: INCREMENTAL_AGGREGATION

Type: BOOLEAN

Valid Values: true, false

Default: true

Indicates whether incremental aggregation should be done or full

aggregation.

Name: LOADING_TYPE

Type: STRING

Valid Values: LOAD, REMOVE

Default: LOAD

The loading operation to be performed when this is a target. If LOAD is

specified, OWB will try to insert all input data into target. If REMOVE is

specified, OWB will try to match between the input data and target data to

compute existing data; it will then remove existing data from target.

Name: MAX_JOB_QUEUES_ALLOCATED

Type: NUMBER

Valid Values: 1 - 1000

Default: 0

The maximum number of job queues allocated when solving the cube.

Name: RUN_AGGREGATION

Type: STRING

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether to solve the cube or not . Specify YES

and cube data will be precomputed for the levels specified in the

definition of cube

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Name: TRUNCATE_LOAD

Type: BOOLEAN

Valid Values: true, false

Default: false

The truncate flag to indicate whether all existing dimension values should

be truncated before load begins (AW only).

Properties for DEDUPLICATOR_OPERATOR:

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Properties for DIMENSION_OPERATOR:

Name: AW_LOAD_MODEL

Type: STRING

Valid Values: OTHER, SNOWFLAKE, STAR

Default: SNOWFLAKE

The loading model for the AW dimension - star, snowflake, or other.

Name: AW_STAGED_LOAD

Type: BOOLEAN

Valid Values: true, false

Default: false

If true, the set-based AW load data is staged into a temporary table before

loading into the AW.

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: DEFAULT_EFFECTIVE_TIME_OF_OPEN_RECORD

Type: STRING

Valid Values: N/A

Default: SYSDATE

A date value to be served as the effective time of a newly created open

record. The same date value is also served as the expiration time to close

an existing open record.

Name: DEFAULT_EXPIRATION_TIME_OF_OPEN_RECORD

Type: STRING

Valid Values: N/A

Default: NULL

A date value to be served as the expiration time of a newly created open

record.

Name: DIMENSION_AWNAME

Type: STRING

Valid Values: N/A

Default: ''

AW Name which contains this Dimension.

Name: DIMENSION_ISAW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

Flag to indicate whether storage is AW.

Name: LOADING_TYPE

Type: STRING

Valid Values: LOAD, REMOVE

Default: LOAD

The loading operation to be performed when this is a target. If LOAD is

specified, OWB will try to match between the input data and target data to

compute new data and existing data; it will then create new data, as well

as modify existing data onto target. If REMOVE is specified, OWB will try

to match between the input data and target data to compute existing data;

it will then remove existing data from target.

Name: SLOWLY_CHANGING_TYPE

Type: STRING

Valid Values: TYPE1, TYPE2, TYPE3

Default: TYPE2

The slowly changing type of this target.

Name: SURROGATE_IDENTIFIER_LOADING_POLICY

Type: STRING

Valid Values: N/A

Default: ''

The name of the sequence used to generate surrogate key values when loading

the dimension.

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Name: TRUNCATE_LOAD

Type: BOOLEAN

Valid Values: true, false

Default: false

The truncate flag to indicate whether all existing dimension values should

be truncated before load begins (AW only).

Name: TYPE2_MATCH_CURRENT_ONLY

Type: STRING

Valid Values: NO, YES

Default: YES

If set to YES, only the current record will be used when performing the

selected operation (remove or extract) for type 2 dimension.

Name: TYPE2_RECORD_GAP_INTERVAL

Type: NUMBER

Valid Values: N/A

Default: 1

A numeric value indicating the number of units (see

TYPE2_RECORD_GAP_INTERVAL_UNITS property below) that will be added to the

expiration date of the previous closed record, to create the effective date

of a new open record.

Name: TYPE2_RECORD_GAP_INTERVAL_UNITS

Type: STRING

Valid Values: DAYS, HOURS, MINUTES, SECONDS, WEEKS

Default: SECONDS

A value indicating the units used for the gap that will be added to the

expiration date of the previous closed record, to create the effective date

of a new open record.

Properties for EXPAND_OBJECT_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Properties for EXTERNAL_TABLE_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: DATABASE_FILE_NAME

Type: STRING

Valid Values: N/A

Default: ''

Database file name to allocate extents from

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DATA_COLLECTION_FREQUENCY

Type: STRING(16)

Valid Values: DAY, HOUR, MINUTE, MONTH, QUARTER, UNKNOWN, YEAR

Default: UNKNOWN

New Data Granularity

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: DIRECT

Type: BOOLEAN

Valid Values: true, false

Default: false

Directly swap source into target as a partition without first creating a

staging table.

Name: ENABLE_CONSTRAINTS

Type: BOOLEAN

Valid Values: true, false

Default: true

Enable Constraints

Name: ERROR_SELECT_FILTER

Type: STRING(3)

Valid Values: NO, YES

Default: YES

Rows selected from the error table will contain only errors created by this

operator in this map execution

Name: ERROR_SELECT_ROLL_UP

Type: STRING(3)

Valid Values: NO, YES

Default: YES

'Records selected from the error table will be rolled up by the error name,

so all errors generated by a particular input record will be rolled up into

a single record with the error names concatenated in the error name

attribute.

Name: ERROR_TABLE_NAME

Type: STRING(32)

Valid Values: N/A

Default: ''

The error table name of this target to log invalid records.

Name: EVALUATE_CHECK_CONSTRAINTS

Type: BOOLEAN

Valid Values: true, false

Default: false

Evaluate check constraints

Name: EXCEPTIONS_TABLE_NAME

Type: STRING

Valid Values: N/A

Default: ''

Exceptions Table Name

Name: EXTRACTION_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when extracting from this table using SQL

Name: LOADING_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when loading into this table using SQL

Name: PARTITION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Partition Name

Name: PEL_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

PEL Enabled

Name: PRIMARY_SOURCE

Type: STRING

Valid Values: NO, YES

Default: NO

A boolean value to indicate whether this is a primary source or not (only

used in EDW).

Name: RECORDS_TO_SKIP

Type: NUMBER

Valid Values: >= 0

Default: 0

Number of records to skip

Name: REPLACE_DATA

Type: BOOLEAN

Valid Values: true, false

Default: false

Replace existing data in target partition if there is any.

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: SINGLEROW

Type: BOOLEAN

Valid Values: true, false

Default: false

Singlerow

Name: SORTED_INDEXES_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

Sorted Indexes Clause

Name: SUBPARTITION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Subpartition Name

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Name: TRAILING_NULLCOLS

Type: BOOLEAN

Valid Values: true, false

Default: false

Trailing Nullcols

Name: TRUNCATE_ERROR_TABLE

Type: STRING(3)

Valid Values: NO, YES

Default: NO

If YES, then the error table will be truncated prior to use. This is

ignored if there are no active data rules applied to the object.

Properties for FILTER_OPERATOR:

Name: FILTER_CONDITION

Type: STRING

Valid Values: N/A

Default: ''

The boolean filtering condition that identifies what data is to be

processed. Any row with a false condition will be ignored.

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Properties for FLAT_FILE_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by reconciliation for this item. Unlike other

operators, it is not needed for generation. By default it is the same name

as the item.

Name: CONCATENATE_RECORDS

Type: NUMBER

Valid Values: N/A

Default: 0

Number of Physical Records per Logical Record.

Name: CONTINUATION_CHARACTER

Type: STRING

Valid Values: N/A

Default: ''

Character that indicates the record is continued on the next line.

Name: CONTINUATION_CHARACTER_ON_NEXT_LINE

Type: BOOLEAN

Valid Values: true, false

Default: FALSE

If there is a continuation character, is it at the start of the line.

Name: FIELD_ENCLOSURE_CHARACTERS

Type: STRING

Valid Values: N/A

Default: ''

Characters that wrap fields. Example ' or ".

Name: FIELD_NAMES_IN_THE_FIRST_ROW

Type: BOOLEAN

Valid Values: true, false

Default: FALSE

Indicates whether file contains a header row.

Name: FIELD_TERMINATION_CHARACTER

Type: STRING

Valid Values: N/A

Default: ,

Character that separates the fields of a delimited file.

Name: FILE_FORMAT

Type: STRING

Valid Values: DELIMITED, FIXED

Default: DELIMITED

File Format (Fixed or Delimited).

Name: LOADING_TYPE

Type: STRING(16)

Valid Values: INSERT, NONE, UPDATE

Default: INSERT

The loading operation to be performed

Name: OUTPUT_AS_XML

Type: BOOLEAN

Valid Values: true, false

Default: false

Output data to file in XML format.

Name: RECORD_DELIMITER

Type: STRING

Valid Values: N/A

Default: ''

Character that indicates the end of the record.

Name: RECORD_SIZE

Type: NUMBER

Valid Values: N/A

Default: 0

Size of a fixed length record.

Name: RECORD_TYPE_LENGTH

Type: NUMBER

Valid Values: N/A

Default: 0

If this is a multi record file, this will indicate the length of the data

that identifies the type of record. It is used with the Record Type

Position.

Name: RECORD_TYPE_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

If this is a multi record file, this will indicate the position of the

field that identifies the type of record.

Name: SAMPLED_FILE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The default name of the physical file to be used by sqlloader. If the file

was sampled, the default was set from sampled file name.

Name: SOURCE_DATA_FILE_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The Location of the File Module of this Flat File at the time of

reconciliation. Stored as UOID.

Name: TARGET_DATA_FILE_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access referenced entity.

Name: TARGET_DATA_FILE_NAME

Type: STRING

Valid Values: N/A

Default: ''

Name of the target data file, including extension (file type). This name

should not include the file path. To specify where the target data file

will be created/appended, set the Target Data File Location.

Properties for ITERATOR_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Properties for JOINER_OPERATOR:

Name: JOIN_CONDITION

Type: STRING

Valid Values: N/A

Default: ''

The Join Condition for the join operator

Properties for KEY_LOOKUP_OPERATOR:

Name: BOUND_LEVEL

Type: STRING

Valid Values: N/A

Default: ''

The level name of the bound level, if this is a dimension lookup.

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: CREATE_NO_MATCH_ROW

Type: BOOLEAN

Valid Values: true, false

Default: true

If true, a row is created and the user-defined default values are used, in

the case where no lookup match is found. If false, no row is produced.

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: EXTRACTION_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when extracting from this table using SQL

Name: LOOKUP_CONDITION

Type: STRING

Valid Values: N/A

Default: ''

Key lookup condition based on the source inputs. This condition is used to

lookup a value in the bound table. If the condition is not met, the

default value expression will be returned. If a default expression is not

defined, null is used.

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Name: TYPE2_HISTORY_LOOKUP_DATE

Type: STRING

Valid Values: N/A

Default: ''

A date expression used when doing a lookup on a type 2 dimension level, to

specify the historical date for which to retrieve data. If blank, the most

current record is used.

Properties for LCRCAST_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Properties for MATCHMERGE_OPERATOR:

Name: MATCH_KEYS

Type: STRING

Valid Values: N/A

Default: ''

Ordered list of attributes that control the set of records to be matched at

any at any particular time.

Name: MATCH_NEW_RECORDS

Type: BOOLEAN

Valid Values: true, false

Default: false

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"MATCHMERGE.GENERAL.MATCH_NEW_RECORDS:DESCRIPTION"

Name: MATCH_NEW_RECORD_CONDITION

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"MATCHMERGE.GENERAL.MATCH_NEW_RECORD_CONDITION:DESCRIPTION"

Name: MERGED_PREFIX

Type: STRING

Valid Values: N/A

Default: ''

Set the prefix used for the merged attributes in the cross-reference group.

Properties for MATERIALIZED_VIEW_OPERATOR:

Name: ADVANCED_MATCH_BY_CONSTRAINT

Type: STRING

Valid Values: N/A

Default: NO_CONSTRAINTS

This property is used by public API and scripting to influence how columns

are used for UPDATE or DELETE DMLs. If this property is set with the name

of a primary or unique key, all the columns in the key will be used for

matching during UPDATE or DELETE; and all the columns not in the key are

used for loading. The property can also be assigned the value "All

constraints" or "No constraints". If the DML type is INSERT,

TRUNCATE/INSERT, or CHECK/INSERT, setting this property causes no effect.

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: ERROR_SELECT_FILTER

Type: STRING(3)

Valid Values: NO, YES

Default: YES

Rows selected from the error table will contain only errors created by this

operator in this map execution

Name: ERROR_SELECT_ROLL_UP

Type: STRING(3)

Valid Values: NO, YES

Default: YES

'Records selected from the error table will be rolled up by the error name,

so all errors generated by a particular input record will be rolled up into

a single record with the error names concatenated in the error name

attribute.

Name: ERROR_TABLE_NAME

Type: STRING(32)

Valid Values: N/A

Default: ''

The error table name of this target to log invalid records.

Name: EXTRACTION_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when extracting from this table using SQL

Name: LOADING_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when loading into this table using SQL

Name: LOADING_TYPE

Type: STRING(16)

Valid Values: CHECK_INSERT, DELETE, DELETE_INSERT, DERIVE_FROM_LCR, INSERT,

INSERT_UPDATE, NONE, TRUNCATE_INSERT, UPDATE, UPDATE_INSERT

Default: INSERT

The loading operation to be performed when this is a target.

Name: MATCH_BY_CONSTRAINT

Type: STRING

Valid Values: N/A

Default: ALL_CONSTRAINTS

A property to indicate whether unique or primary key information on this

target will override the matching criteria obtained from Match by

constraint property on the attributes of this target.

Name: PRIMARY_SOURCE

Type: STRING

Valid Values: NO, YES

Default: NO

A boolean value to indicate whether this is a primary source or not (only

used in EDW).

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: TARGET_FILTER_FOR_DELETE

Type: STRING

Valid Values: N/A

Default: ''

A condition on the rows in the target and if evaluated to true, that row

will participate in the delete loading operation.

Name: TARGET_FILTER_FOR_UPDATE

Type: STRING

Valid Values: N/A

Default: ''

A condition on the rows in the target and if evaluated to true, that row

will participate in the update loading operation.

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Name: TRUNCATE_ERROR_TABLE

Type: STRING(3)

Valid Values: NO, YES

Default: NO

If YES, then the error table will be truncated prior to use. This is

ignored if there are no active data rules applied to the object.

Properties for NAME_AND_ADDRESS_OPERATOR:

Name: ADDRESS_LINE_1

Type: STRING

Valid Values: N/A

Default: ''

Address line 1

Name: ADDRESS_LINE_2

Type: STRING

Valid Values: N/A

Default: ''

Address line 2

Name: ADDRESS_LINE_3

Type: STRING

Valid Values: N/A

Default: ''

Address line 3

Name: ADDRESS_LINE_4

Type: STRING

Valid Values: N/A

Default: ''

Address line 4

Name: DUAL_ADDRESS_ASSIGNMENT

Type: STRING

Valid Values: NA_DUALADDR_CLOSESTTOLASTLINE, NA_DUALADDR_POBOX,

NA_DUALADDR_STREET

Default: NA_DUALADDR_STREET

A dual address refers to two address lines for the same destination. For

example, a record contains both a street address and a P.O. Box; this is

common with business data. Select which of the two address lines should be

assigned in these cases.

Name: GENERATE_CASS_REPORT

Type: STRING

Valid Values: NA_NO, NA_YES

Default: NA_NO

Select "Yes" to generate CASS (Coding Accuracy Support System) report. CASS

report is a text file specified by the United States Postal Service. The

report is written to the [nas/bin/admin/reports] folder under the home

folder of the name/address server.

Name: LIST_NAME

Type: STRING

Valid Values: N/A

Default: ''

The list name is optional and provides a reference for tracking multiple

CASS reports.

Name: PARSING_TYPE

Type: STRING

Valid Values: NA_ADDRESSONLY, NA_NAMEANDADDRESS, NA_NAMEONLY

Default: NA_NAMEANDADDRESS

Select a name-address parsing type to be performed on the input data

Name: PRIMARY_COUNTRY

Type: STRING

Valid Values: NA_AND, NA_ARE, NA_ARG, NA_AUS, NA_AUT, NA_BEL, NA_BGD,

NA_BGR, NA_BHS, NA_BLZ, NA_BMU, NA_BRA, NA_BRB, NA_BRN, NA_CAN, NA_CHE,

NA_CHL, NA_CHN, NA_COL, NA_CZE, NA_DEU, NA_DNK, NA_EGY, NA_ESP, NA_EST,

NA_FIN, NA_FRA, NA_GBR, NA_GRC, NA_GUM, NA_HKG, NA_HUN, NA_ICL, NA_IND,

NA_IRL, NA_IRN, NA_IRQ, NA_ISR, NA_ITA, NA_JAM, NA_JOR, NA_JPN, NA_KHM,

NA_KOR, NA_LIE, NA_LTU, NA_LUX, NA_LVA, NA_MEX, NA_MYS, NA_NLD, NA_NOR,

NA_NZL, NA_PAK, NA_PER, NA_PHL, NA_POL, NA_PRT, NA_ROM, NA_RUS, NA_SGP,

NA_SVN, NA_SWE, NA_THA, NA_UKR, NA_USA, NA_VEN, NA_YUG, NA_ZAF

Default: NA_USA

Select the primary parsing country which best represents the input data.

Input addresses having the same country as the primary parsing country will

only need to be parsed once. Input addresses having a different country

than the primary parsing country may be reparsed by a different parser. For

performance reasons, it is best to minimize the percentage of 2-pass parses

by selecting the optimal parser.

Name: PROCESSOR_NAME

Type: STRING

Valid Values: N/A

Default: ''

The processor name is the name of the organization submitting the CASS

report.

Properties for PIVOT_OPERATOR:

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Name: PIVOT_GROUP_SIZE

Type: NUMBER

Valid Values: 1 - 1000

Default: 2

A number specifying the pivot group size for the pivot operation. Pivot

group size determines the number of output rows that are produced from each

input row.

Properties for PLUGGABLE_MAPPING_OPERATOR:

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Properties for POSTMAPPING_PROCESS_OPERATOR:

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: FUNCTION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Name of the transformation to be called.

Name: POSTMAPPING_PROCESS_RUN_CONDITION

Type: STRING(10)

Valid Values: ALWAYS, ON_ERROR, ON_SUCCESS, ON_WARNING

Default: ON_SUCCESS

Indicates under what condition of the mapping the post-mapping process will

be run.

Name: ROW-BASED_ONLY

Type: BOOLEAN

Valid Values: true, false

Default: false

Indicates if this transformation must be used only Row Based mode. Some

transformations can be used in SQL mode as well as Row Based mode.

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Properties for PREMAPPING_PROCESS_OPERATOR:

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: FUNCTION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Name of the transformation to be called.

Name: MAPPING_RUN_CONDITION

Type: STRING(10)

Valid Values: ALWAYS, ON_ERROR, ON_SUCCESS

Default: ON_SUCCESS

Indicates under what condition of the pre-mapping process the mapping will

be run.

Name: ROW-BASED_ONLY

Type: BOOLEAN

Valid Values: true, false

Default: false

Indicates if this transformation must be used only Row Based mode. Some

transformations can be used in SQL mode as well as Row Based mode.

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Properties for QUEUE_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: REAL_TIME_DATA_FORMAT

Type: STRING

Valid Values: LOGICAL_CHANGE_RECORD, MESSAGE

Default: LOGICAL_CHANGE_RECORD

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"ADVANCEDQUEUE.DEFAULT.REALTIMEFORMAT:DESCRIPTION"

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Properties for SEQUENCE_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Properties for SET_OPERATION_OPERATOR:

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Name: SET_OPERATION

Type: STRING

Valid Values: INTERSECT, MINUS, UNION, UNIONALL

Default: UNION

Specifies the set operation that is to be performed by this operator.

Properties for SORTER_OPERATOR:

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Name: ORDER_BY_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

The Order By Clause

Properties for SPLITTER_OPERATOR:

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Properties for TABLE_FUNCTION_OPERATOR:

Name: TABLE_FUNCTION_IS_TARGET

Type: BOOLEAN

Valid Values: true, false

Default: false

Description not available.

Name: TABLE_FUNCTION_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name of the Table Function

Properties for TABLE_OPERATOR:

Name: ADVANCED_MATCH_BY_CONSTRAINT

Type: STRING

Valid Values: N/A

Default: NO_CONSTRAINTS

This property is used by public API and scripting to influence how columns

are used for UPDATE or DELETE DMLs. If this property is set with the name

of a primary or unique key, all the columns in the key will be used for

matching during UPDATE or DELETE; and all the columns not in the key are

used for loading. The property can also be assigned the value "All

constraints" or "No constraints". If the DML type is INSERT,

TRUNCATE/INSERT, or CHECK/INSERT, setting this property causes no effect.

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: CONFLICT_RESOLUTION

Type: BOOLEAN

Valid Values: true, false

Default: true

Detect and resolve any conflicts that may arise during DML using the LCR

APIs

Name: DATABASE_FILE_NAME

Type: STRING

Valid Values: N/A

Default: ''

Database file name to allocate extents from

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DATA_COLLECTION_FREQUENCY

Type: STRING(16)

Valid Values: DAY, HOUR, MINUTE, MONTH, QUARTER, UNKNOWN, YEAR

Default: UNKNOWN

New Data Granularity

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: DIRECT

Type: BOOLEAN

Valid Values: true, false

Default: false

Directly swap source into target as a partition without first creating a

staging table.

Name: ENABLE_CONSTRAINTS

Type: BOOLEAN

Valid Values: true, false

Default: true

Enable Constraints

Name: ERROR_SELECT_FILTER

Type: STRING(3)

Valid Values: NO, YES

Default: YES

Rows selected from the error table will contain only errors created by this

operator in this map execution

Name: ERROR_SELECT_ROLL_UP

Type: STRING(3)

Valid Values: NO, YES

Default: YES

'Records selected from the error table will be rolled up by the error name,

so all errors generated by a particular input record will be rolled up into

a single record with the error names concatenated in the error name

attribute.

Name: ERROR_TABLE_NAME

Type: STRING(32)

Valid Values: N/A

Default: ''

The error table name of this target to log invalid records.

Name: EVALUATE_CHECK_CONSTRAINTS

Type: BOOLEAN

Valid Values: true, false

Default: false

Evaluate check constraints

Name: EXCEPTIONS_TABLE_NAME

Type: STRING

Valid Values: N/A

Default: ''

Exceptions Table Name

Name: EXTRACTION_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when extracting from this table using SQL

Name: JOINRANK

Type: FLOAT

Valid Values: N/A

Default: 0

Join Rank

Name: LOADING_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when loading into this table using SQL

Name: LOADING_TYPE

Type: STRING(16)

Valid Values: CHECK_INSERT, DELETE, DELETE_INSERT, DERIVE_FROM_LCR, INSERT,

INSERT_UPDATE, NONE, TRUNCATE_INSERT, UPDATE, UPDATE_INSERT

Default: INSERT

The loading operation to be performed when this is a target.

Name: MATCH_BY_CONSTRAINT

Type: STRING

Valid Values: N/A

Default: ALL_CONSTRAINTS

A property to indicate whether unique or primary key information on this

target will override the matching criteria obtained from Match by

constraint property on the attributes of this target.

Name: PARTITION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Partition Name

Name: PEL_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

PEL Enabled

Name: PRIMARY_SOURCE

Type: STRING

Valid Values: NO, YES

Default: NO

A boolean value to indicate whether this is a primary source or not (only

used in EDW).

Name: RECORDS_TO_SKIP

Type: NUMBER

Valid Values: >= 0

Default: 0

Number of records to skip

Name: REPLACE_DATA

Type: BOOLEAN

Valid Values: true, false

Default: false

Replace existing data in target partition if there is any.

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: SINGLEROW

Type: BOOLEAN

Valid Values: true, false

Default: false

Singlerow

Name: SORTED_INDEXES_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

Sorted Indexes Clause

Name: SUBPARTITION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Subpartition Name

Name: TARGET_FILTER_FOR_DELETE

Type: STRING

Valid Values: N/A

Default: ''

A condition on the rows in the target and if evaluated to true, that row

will participate in the delete loading operation.

Name: TARGET_FILTER_FOR_UPDATE

Type: STRING

Valid Values: N/A

Default: ''

A condition on the rows in the target and if evaluated to true, that row

will participate in the update loading operation.

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Name: TRAILING_NULLCOLS

Type: BOOLEAN

Valid Values: true, false

Default: false

Trailing Nullcols

Name: TRUNCATE_ERROR_TABLE

Type: STRING(3)

Valid Values: NO, YES

Default: NO

If YES, then the error table will be truncated prior to use. This is

ignored if there are no active data rules applied to the object.

Name: USE_LCR_API

Type: BOOLEAN

Valid Values: true, false

Default: true

Use LCR APIs if possible to perform the DML

Properties for TRANSFORMATION_OPERATOR:

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: FUNCTION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Name of the transformation to be called.

Name: IS_TARGET

Type: BOOLEAN

Valid Values: true, false

Default: false

If true, then the function is a target

Name: RETURN_TYPE

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: ROW-BASED_ONLY

Type: BOOLEAN

Valid Values: true, false

Default: false

Indicates if this transformation must be used only Row Based mode. Some

transformations can be used in SQL mode as well as Row Based mode.

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Properties for UNPIVOT_OPERATOR:

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Properties for VIEW_OPERATOR:

Name: ADVANCED_MATCH_BY_CONSTRAINT

Type: STRING

Valid Values: N/A

Default: NO_CONSTRAINTS

This property is used by public API and scripting to influence how columns

are used for UPDATE or DELETE DMLs. If this property is set with the name

of a primary or unique key, all the columns in the key will be used for

matching during UPDATE or DELETE; and all the columns not in the key are

used for loading. The property can also be assigned the value "All

constraints" or "No constraints". If the DML type is INSERT,

TRUNCATE/INSERT, or CHECK/INSERT, setting this property causes no effect.

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: DATABASE_FILE_NAME

Type: STRING

Valid Values: N/A

Default: ''

Database file name to allocate extents from

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: ERROR_SELECT_FILTER

Type: STRING(3)

Valid Values: NO, YES

Default: YES

Rows selected from the error table will contain only errors created by this

operator in this map execution

Name: ERROR_SELECT_ROLL_UP

Type: STRING(3)

Valid Values: NO, YES

Default: YES

'Records selected from the error table will be rolled up by the error name,

so all errors generated by a particular input record will be rolled up into

a single record with the error names concatenated in the error name

attribute.

Name: ERROR_TABLE_NAME

Type: STRING(32)

Valid Values: N/A

Default: ''

The error table name of this target to log invalid records.

Name: EXTRACTION_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when extracting from this table using SQL

Name: LOADING_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when loading into this table using SQL

Name: LOADING_TYPE

Type: STRING(16)

Valid Values: CHECK_INSERT, DELETE, DELETE_INSERT, DERIVE_FROM_LCR, INSERT,

INSERT_UPDATE, NONE, TRUNCATE_INSERT, UPDATE, UPDATE_INSERT

Default: INSERT

The loading operation to be performed when this is a target.

Name: MATCH_BY_CONSTRAINT

Type: STRING

Valid Values: N/A

Default: ALL_CONSTRAINTS

A property to indicate whether unique or primary key information on this

target will override the matching criteria obtained from Match by

constraint property on the attributes of this target.

Name: PARTITION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Partition Name

Name: PRIMARY_SOURCE

Type: STRING

Valid Values: NO, YES

Default: NO

A boolean value to indicate whether this is a primary source or not (only

used in EDW).

Name: RECORDS_TO_SKIP

Type: NUMBER

Valid Values: >= 0

Default: 0

Number of records to skip

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: SINGLEROW

Type: BOOLEAN

Valid Values: true, false

Default: false

Singlerow

Name: SORTED_INDEXES_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

Sorted Indexes Clause

Name: SUBPARTITION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Subpartition Name

Name: TARGET_FILTER_FOR_DELETE

Type: STRING

Valid Values: N/A

Default: ''

A condition on the rows in the target and if evaluated to true, that row

will participate in the delete loading operation.

Name: TARGET_FILTER_FOR_UPDATE

Type: STRING

Valid Values: N/A

Default: ''

A condition on the rows in the target and if evaluated to true, that row

will participate in the update loading operation.

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Name: TRAILING_NULLCOLS

Type: BOOLEAN

Valid Values: true, false

Default: false

Trailing Nullcols

Name: TRUNCATE_ERROR_TABLE

Type: STRING(3)

Valid Values: NO, YES

Default: NO

If YES, then the error table will be truncated prior to use. This is

ignored if there are no active data rules applied to the object.

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

childName

Name of a child that belongs to map, mapping operator, mapping group or

mapping attribute.

pluggableMapLocator

Location of a child pluggable mapping within a mapping or another pluggable

mapping.

operatorName

Name of a mapping operator.

groupDirection

Direction of a mapping group.

groupLocator

Location of a mapping group.

getGroupDetailClause

Get the desired detail of a mapping group.

operatorBottomUpLocator

Location of a mapping operator.

groupBottomUpLocator

Location of a mapping group.

attributeBottomUpLocator

Location of a mapping attribute.

pluggableMapName

Name of the pluggable map.

groupName

Name of a mapping group.

attributeLocator

Location of a mapping attribute.

getAttributeDetailClause

Get the desired detail of a mapping attribute.

pluggableMapBottomUpLocator

Location of a child pluggable mapping within a mapping or another pluggable

mapping.

attributeName

Name of a mapping attribute.

See Also

OMBRETRIEVE, OMBCREATE MAPPING, OMBALTER MAPPING, OMBDROP MAPPING

OMBRETRIEVE MATERIALIZED_VIEW

Purpose

To retrieve properties of a materialized view.

Prerequisites

In the context of an Oracle Module

Syntax

retrieveMaterializedViewCommand =  OMBRETRIEVE MATERIALIZED_VIEW 
     "QUOTED_STRING" ( "retrieveMaterializedViewClause" | 
     "retrieveColumnClause" | "retrieveUkPkClause" | "retrieveFkClause" | 
     "retrieveCheckConstraintClause" | "retrieveIndexConfigurationClause" |
      "retrievePartitionConfigurationClause" | 
     "retrievePartitionKeyConfigurationClause" | 
     "retrieveTemplateSubpartitionConfigurationClause" | 
     "retrieveSubPartitionConfigurationClause" | 
     "retrieveSubPartitionKeyConfigurationClause" | 
     "retrieveDataRuleUsageClause" )
retrieveMaterializedViewClause =  GET ( "getPropertiesClause" | 
     "getReferenceIconSetClause" | 
     "getMaterializedViewSCOorDependentsClause" )
retrieveColumnClause =  COLUMN "QUOTED_STRING" GET "getPropertiesClause"
retrieveUkPkClause =  ( UNIQUE_KEY | PRIMARY_KEY ) "QUOTED_STRING" GET ( 
     "getPropertiesClause" | COLUMNS )
retrieveFkClause =  FOREIGN_KEY "QUOTED_STRING" GET ( "getPropertiesClause"
      | COLUMNS | UNIQUE_KEY | PRIMARY_KEY | REFERENCED_KEY )
retrieveCheckConstraintClause =  CHECK_CONSTRAINT "QUOTED_STRING" GET 
     "getPropertiesClause"
retrieveIndexConfigurationClause =  INDEX "QUOTED_STRING" ( GET ( 
     "getConfigurationPropertiesClause" | INDEX_COLUMNS | INDEX_PARTITIONS 
     | INDEX_PARTITION_KEYS ) | ( INDEX_COLUMN "QUOTED_STRING" GET 
     "getConfigurationPropertiesClause" ) | ( INDEX_PARTITION_KEY 
     "QUOTED_STRING" GET "getConfigurationPropertiesClause" ) | ( 
     INDEX_PARTITION "QUOTED_STRING" GET "getConfigurationPropertiesClause"
      ) )
retrievePartitionConfigurationClause =  PARTITION "QUOTED_STRING" GET 
     "getConfigurationPropertiesClause"
retrievePartitionKeyConfigurationClause =  PARTITION_KEY "QUOTED_STRING" 
     GET "getConfigurationPropertiesClause"
retrieveTemplateSubpartitionConfigurationClause =  TEMPLATE_SUBPARTITION 
     "QUOTED_STRING" GET "getConfigurationPropertiesClause"
retrieveSubPartitionConfigurationClause =  SUBPARTITION "QUOTED_STRING" OF 
     PARTITION "QUOTED_STRING" GET "getConfigurationPropertiesClause"
retrieveSubPartitionKeyConfigurationClause =  SUBPARTITION_KEY 
     "QUOTED_STRING" GET "getConfigurationPropertiesClause"
retrieveDataRuleUsageClause =  DATA_RULE_USAGE "QUOTED_STRING" ( GET ( 
     "getPropertiesClause" | GROUPS ) | GROUP "QUOTED_STRING" ( GET ( 
     "getPropertiesClause" | ATTRIBUTES | REF ( TABLE | VIEW | 
     MATERIALIZED_VIEW | EXTERNAL_TABLE ) ) | ATTRIBUTE "QUOTED_STRING" ( 
     GET ( "getPropertiesClause" | REF COLUMN ) ) ) )
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
getReferenceIconSetClause =  ( REF | REFERENCE ) ICONSET
getMaterializedViewSCOorDependentsClause =  COLUMNS | UNIQUE_KEYS | 
     PRIMARY_KEY | FOREIGN_KEYS | CHECK_CONSTRAINTS | COLUMN AT POSITION 
     "INTEGER_LITERAL" | INDEXES | PARTITIONS | PARTITION_KEYS | 
     SUBPARTITION_KEYS | DATA_RULE_USAGES | ( REF | REFERENCE ) ( TABLES | 
     VIEWS | MATERIALIZED_VIEWS )
getConfigurationPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveMaterializedViewCommand

This clause retrieves a materialized view.

QUOTED_STRING

name of the materialized view.

retrieveMaterializedViewClause

This clause retrieves a properties of a materialized view.

retrieveColumnClause

This clause will retrieve columns.

QUOTED_STRING

Name of the column.

retrieveUkPkClause

This clause will retrieve a unique key or primary key.

QUOTED_STRING

Name of the unique key or the primary key.

retrieveFkClause

This clause will retrieve a key referenced by a foreign key, either a

unique key or primary key. Use REFERENCED_KEY to retrieve the referenced

key for a foreign key regardless of the type of referenced key (unique or

primary).

QUOTED_STRING

Name of the foreign key.

retrieveCheckConstraintClause

This clause gets the check constraint.

QUOTED_STRING

Name of the check constraint.

retrieveIndexConfigurationClause

Gets the index in this clause.

QUOTED_STRING

Name of the index.

retrievePartitionConfigurationClause

Gets the partition.

QUOTED_STRING

The partition name.

retrievePartitionKeyConfigurationClause

This clause gets the partition key.

QUOTED_STRING

The name of the partition key.

retrieveDataRuleUsageClause

This clause retrieves the data rule usages.

QUOTED_STRING

Name of data rule usage, group or attribute.

GROUPS

Retrieve the names of all relation groups in the data rule usage.

ATTRIBUTES

Retrieve the names of all attributes in a data rule usage group.

TABLE

Table name associated withthe data rule usage group.

VIEW

View name associated withthe data rule usage group.

MATERIALIZED_VIEW

Materialized view name associated with the data rule usage group.

EXTERNAL_TABLE

External table name associated with the data rule usage group.

COLUMN

Column name associated with the data rule usage group attribute.

getPropertiesClause

This clause retrieves all the properties.

Note:

Constraints can be specified but will not be generated for either View or

Materialized View in this release.

Basic properties for VIEW, MATERIALIZED_VIEW:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the View, MaterializedView

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the View, MaterializedView

Name: VIEW_QUERY

Type: STRING(4000)

Valid Values: N/A

Default: ''

Sets the query definition in View and MaterializedView.

Basic properties for COLUMN:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the column

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the column

Name: DATATYPE

Type: STRING

Valid Values: BINARY_DOUBLE, BINARY_FLOAT, BLOB, CHAR, CLOB, DATE, FLOAT,

INTEGER, INTERVAL DAY TO SECOND, INTERVAL YEAR TO MONTH, NCHAR, NCLOB,

NUMBER, NVARCHAR2, RAW, SYS.ANYDATA, SYS.LCR$_ROW_RECORD, SYS.XMLFORMAT,

TIMESTAMP, TIMESTAMP WITH LOCAL TIME ZONE, TIMESTAMP WITH TIME ZONE,

VARHCAR, VARCHAR2, XMLTYPE

Default: NUMBER

The datatype of a column

Name: LENGTH

Type: NUMBER

Valid Values:

Default: 1

The length of a number

Name: PRECISION

Type: NUMBER

Valid Values: 0 - 38

Default: 1

The precision of a number. Use 0 to specify floating-point numbers.

Name: SCALE

Type: NUMBER

Valid Values: -84 - 127

Default: 1

The scale of a number.

Name: FRACTIONAL_SECONDS_PRECISION

Type: NUMBER

Valid Values: 0 - 9

Default: 0

The precision of a timestamp or interval.

Name: DEFAULT_VALUE

Type: STRING

Valid Values: N/A

Default: ''

Default value of the column

Name: NOT_NULL

Type: BOOLEAN

Valid Values: true, false

Default: false

Specify "true" to enforce Not Null restriction on a column.

Basic properties for PARTITION_KEY:

Name: TYPE

Type: STRING

Valid Values: RANGE, LIST, HASH, HASH BY QUANTITY

Default: (No default, must be one of the choices above)

Ask Oracle to partition the table rows according to a Hash Algorithm, lists

of values, or specified ranges.

Name: HASH_QUANTITY

Type: STRING

Valid Values: N/A

Default: '0'

Specify how many HASH partitions the database should create on HASH BY

QUANTITY partitioning. For optimal load balancing you should specify a

number of partitions that is a power of 2. If you have multiple Partition

Keys, you only have to specify once.

Basic properties for PARTITION:

Name: VALUES_LESS_THAN

Type: STRING

Valid Values: N/A

Default: ''

Specify the noninclusive upper bound for the current RANGE partition. The

value list is a comma-delimited, ordered list of literal values

corresponding to the index partitioning column list. Always specify

MAXVALUE(s) as the value(s) of the last partition, and make sure you have

specified PARTITION_KEY(s) before you specify any PARTITION.

Name: VALUES_EQUAL_TO

Type: STRING

Valid Values: N/A

Default: ''

Specify a list of literal values for the current LIST partition. The value

list is a comma-delimited, ordered list of literal values corresponding to

the index partitioning column. Commas can be escaped using "" (e.g.

'1,2,3'). Always specify DEFAULT as the value of the last partition, and

make sure you have specified PARTITION_KEY(s) before you specify any

PARTITION.. Each LIST partition must have at least one value. No value,

including NULL, can appear in more than one partition.

Name: HASH_QUANTITY

Type: STRING

Valid Values: N/A

Default: '0'

Specify how many HASH customized subpartitions the database should create

for a particular main RANGE partition (RANGE-HASH BY QUANTITY

partitioning). For optimal load balancing you should specify a number of

subpartitions that is a power of 2. If you have multiple Subpartition Keys,

you only have to specify once. Set it to 0 to reverse to the use of generic

template HASH_QUANTITY specified in SUBPARTITION_KEY.

Basic properties for SUBPARTITION_KEY:

Name: TYPE

Type: STRING

Valid Values: LIST, HASH, HASH BY QUANTITY

Default: (No default, must be one of the choices above)

For partition-level partitioning according to a Hash Algorithm or lists of

values. Each partition is further sorted into subpartitions.

Name: HASH_QUANTITY

Type: STRING

Valid Values: N/A

Default: '0'

Specify how many HASH subpartitions the database should create on HASH BY

QUANTITY partitioning. For optimal load balancing you should specify a

number of subpartitions that is a power of 2. If you have multiple

Subpartition Keys, you only have to specify once.

Basic properties for SUBPARTITION:

Name: VALUES_EQUAL_TO

Type: STRING

Valid Values: N/A

Default: ''

Specify a list of literal values for the current LIST subpartition. The

value list is a comma-delimited, ordered list of literal values

corresponding to the index partitioning column. Always specify DEFAULT as

the value of the last subpartition, and make sure you have specified

SUBPARTITION_KEY(s) before you specify any SUBPARTITION. Each LIST

subpartition must have at least one value. No value, including NULL, can

appear in more than one subpartition.

Basic properties for TEMPLATE_SUBPARTITION:

Name: VALUES_EQUAL_TO

Type: STRING

Valid Values: N/A

Default: ''

In composite partitioning, template subpartitions are automatically applied

to those partitions without their subpartitions specified. Here for LIST

subpartitions only, specify a comma-delimited, ordered list of literal

values corresponding to the LIST subpartitioning column. Always specify

DEFAULT as the value of the last template LIST subpartition, and and make

sure you have specified SUBPARTITION_KEY(s) before you specify any

TEMPLATE_SUBPARTITION. Each LIST template subpartition must have at least

one value. No value, including NULL, can appear in more than one template

subpartition.

Basic properties for INDEX:

Name: INDEX_TYPE

Type: STRING

Valid Values: UNIQUE, NON-UNIQUE, BITMAP, FUNCTION-BASED

Default: (No default, must be one of the choices above)

Specify the type of an index. NORMAL can be used in place of NON-UNIQUE.

Name: LOCAL_INDEX

Type: BOOLEAN

Valid Values: true, false

Default: false

Specify if an index is Global or Local. The default is Global.

Specify Local so that the index is partitioned on the same columns, with

the same number of partitions and the same partition bounds as table.

Oracle Database automatically maintains local index partitioning as the

underlying table is repartitioned.

Name: COLUMN_EXPRESSION

Type: STRING

Valid Values: N/A

Default: ''

Specify an expression built from columns of table, constants, SQL

functions, and user-defined functions to create a FUNCTION-BASED index.

Basic properties for INDEX_PARTITION_KEY:

Name: TYPE

Type: STRING

Valid Values: RANGE, HASH, HASH BY QUANTITY

Default: (No default, must be one of the choices above)

Ask Oracle to partition the index rows according to a Hash Algorithm, lists

of values, or specified ranges. Hash index partitioning is supported

starting with Oracle 10g version.

Name: HASH_QUANTITY

Type: STRING

Valid Values: N/A

Default: '0'

Specify how many HASH index partitions the database should create based on

HASH BY QUANTITY partitioning. For optimal load balancing you should

specify a number of index partitions that is a power of 2. If you have

multiple index Partition Keys, you only have to specify once.

Basic properties for INDEX_PARTITION:

Name: VALUES_LESS_THAN

Type: STRING

Valid Values: N/A

Default: ''

Specify the noninclusive upper bound for the current RANGE partition in a

global index. The value list is a comma-delimited, ordered list of literal

values corresponding to the index partitioning column list. Always specify

MAXVALUE(s) as the value(s) of the last partition. No need to specify

VALUES_LESS_THAN for Local index.

Name: VALUES_EQUAL_TO

Type: STRING

Valid Values: N/A

Default: ''

Specify a list of literal values for the current LIST partition in a global

index. The value list is a comma-delimited, ordered list of literal values

corresponding to the index partitioning column. Always specify DEFAULT as

the value of the last partition. Each LIST partition must have at least one

value. No value, including NULL, can appear in more than one partition. No

need to specify VALUES_EQUAL_TO for Local index.

Basic properties for CHECK_CONSTRAINTS:

Name: CHECK_CONDITION

Type: STRING

Valid Values: N/A

Default: ''

Specify a condition that each row in the table must satisfy.

Properties for MATERIALIZED_VIEW:

Name: BASE_TABLES

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: BUFFER_POOL

Type: STRING

Valid Values: , DEFAULT, KEEP, RECYCLE

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.BUFFERPOOL:DESCRIPTION"

Name: BUILD

Type: STRING

Valid Values: , DEFERRED, IMMEDIATE, PREBUILT

Default: ''

Description not available.

Name: CONSTRAINTS

Type: STRING

Valid Values: , ENFORCED, TRUSTED

Default: ''

Description not available.

Name: DEFAULTINDEXBUFFERPOOL

Type: STRING

Valid Values: , DEFAULT, KEEP, RECYCLE

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.DEFAULTINDEXBUFFERPOOL:DESCRIPTION"

Name: DEFAULTINDEXFREELISTGROUPS

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.DEFAULTINDEXFREELISTGROUPS:DESCRIPTION"

Name: DEFAULTINDEXFREELISTS

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.DEFAULTINDEXFREELISTS:DESCRIPTION"

Name: DEFAULTINDEXINITIAL

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.DEFAULTINDEXINITIAL:DESCRIPTION"

Name: DEFAULTINDEXINITRANS

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.DEFAULTINDEXINITRANS:DESCRIPTION"

Name: DEFAULTINDEXMAXEXTENTS

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.DEFAULTINDEXMAXEXTENTS:DESCRIPTION"

Name: DEFAULTINDEXMAXTRANS

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.DEFAULTINDEXMAXTRANS:DESCRIPTION"

Name: DEFAULTINDEXMINEXTENTS

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.DEFAULTINDEXMINEXTENTS:DESCRIPTION"

Name: DEFAULTINDEXNEXT

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.DEFAULTINDEXNEXT:DESCRIPTION"

Name: DEFAULTINDEXPCTINCREASE

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.DEFAULTINDEXPCTINCREASE:DESCRIPTION"

Name: DEFAULT_INDEX_TABLESPACE

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.DEFAULTINDEXSTOREIN:DESCRIPTION"

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Description not available.

Name: FOR_UPDATE

Type: STRING

Valid Values: , NO, YES

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.FORUPDATE:DESCRIPTION"

Name: FREELISTGROUPS

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.FREELISTGROUPS:DESCRIPTION"

Name: FREELISTS

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.FREELISTS:DESCRIPTION"

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Name: HASH_PARTITION_TABLESPACE_LIST

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: INITIAL

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.INITIAL:DESCRIPTION"

Name: INITRANS

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.INITRANS:DESCRIPTION"

Name: LOGGING_MODE

Type: STRING

Valid Values: , LOGGING, NOLOGGING

Default: ''

Description not available.

Name: MAXEXTENTS

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.MAXEXTENTS:DESCRIPTION"

Name: MAXTRANS

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.MAXTRANS:DESCRIPTION"

Name: MINEXTENTS

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.MINEXTENTS:DESCRIPTION"

Name: NEXT

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: NEXTDATE

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.NEXTDATE:DESCRIPTION"

Name: PARALLEL_ACCESS_MODE

Type: STRING

Valid Values: , NOPARALLEL, PARALLEL

Default: ''

Description not available.

Name: PARALLEL_DEGREE

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.PARALLELDEGREE:DESCRIPTION"

Name: PCTFREE

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.PCTFREE:DESCRIPTION"

Name: PCTINCREASE

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.PCTINCREASE:DESCRIPTION"

Name: PCTUSED

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.PCTUSED:DESCRIPTION"

Name: QUERY_REWRITE

Type: STRING

Valid Values: , DISABLE, ENABLE

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.QUERY REWRITE:DESCRIPTION"

Name: REFRESH

Type: STRING

Valid Values: , COMPLETE, FAST, FORCE, NEVER

Default: ''

Description not available.

Name: REFRESH_ON

Type: STRING

Valid Values: , COMMIT, DEMAND

Default: ''

Description not available.

Name: ROLLBACK

Type: STRING

Valid Values: , DEFAULT, DEFAULT LOCAL, DEFAULT MASTER, NONE

Default: DEFAULT LOCAL

Description not available.

Name: ROLLBACKSEGMENTLOCAL

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: ROLLBACKSEGMENTMASTER

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: SHADOW_TABLESPACE

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.SHADOWTABLE.TABLESPACE:DESCRIPTION"

Name: SHADOW_TABLE_NAME

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.MATERIALIZEDVIEWS.SHADOWTABLE.TABLENAME:DESCRIPTION"

Name: STARTWITH

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: TABLESPACE

Type: STRING(30)

Valid Values: N/A

Default: ''

Description not available.

Name: USING_INDEX_MODE

Type: STRING

Valid Values: , USING_INDEX, USING_NO_INDEX

Default: ''

Description not available.

Name: WITH

Type: STRING

Valid Values: , PRIMARY_KEY, ROWID

Default: ''

Description not available.

Properties for UNIQUE_KEY:

Name: DEFERRABLE

Type: STRING

Valid Values: , DEFERRABLE, NOT DEFERRABLE

Default: ''

Specify DEFERRABLE to indicate that in subsequent transactions you can use

the SET CONSTRAINT[S] clause to defer checking of this constraint until

after the transaction is committed. Specify NOT DEFERRABLE to indicate that

in subsequent transactions you cannot use the SET CONSTRAINT[S] clause to

defer checking of this constraint until the transaction is committed. The

default is NOT DEFERRABLE.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: ENABLECONSTRAINT

Type: STRING

Valid Values: , DISABLE, ENABLE

Default: ''

Specify ENABLE if you want the constraint to be applied to the data in the

table. Specify DISABLE to disable the integrity constraint. The default is

ENABLE.

Name: EXCEPTIONSINTO

Type: STRING

Valid Values: N/A

Default: ''

Specify an exceptions table ([schema.]table). The EXCEPTIONS table or the

table you specify must exist on your local database. If you create your own

exceptions table, then it must follow the format prescribed by one of the

two scripts supplied by Oracle. Do not use this property with NOVALIDATE

option.

Name: INDEX_TABLESPACE

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.TABLE.CONSTRAINT.INDEXTABLESPACE:DESCRIPTION"

Name: INITIALLY

Type: STRING

Valid Values: , DEFERRED, IMMEDIATE

Default: ''

Specify (INITIALLY) IMMEDIATE to indicate that Oracle should check a

DEFERRABLE constraint at the end of each subsequent SQL statement. Specify

(INITIALLY) DEFERRED to indicate that Oracle should check a DEFERRABLE

constraint at the end of subsequent transactions. The default is

(INITIALLY) IMMEDIATE.

Name: RELY

Type: STRING

Valid Values: , NORELY, RELY

Default: ''

Specify RELY to activate an existing constraint in NOVALIDATE mode for

query rewrite in an unenforced query rewrite integrity mode. The default is

NORELY.

Name: SUBSTITUTE_KEY

Type: BOOLEAN

Valid Values: true, false

Default: false

This is related to Streams Support. If this is true, deployment will result

only in creation of the key metadata. The constraint itself will not be

enforced. This will be done by creating a Streams substitute key.

Name: USING_INDEX

Type: BOOLEAN

Valid Values: true, false

Default: false

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.TABLE.CONSTRAINT.USINGINDEX:DESCRIPTION"

Name: VALIDATECONSTRAINT

Type: STRING

Valid Values: , NOVALIDATE, VALIDATE

Default: ''

The behavior of VALIDATE and NOVALIDATE always depends on whether the

constraint is enabled or disabled, either explicitly or by default.

(ENABLE) VALIDATE specifies that all old and new data must compliy with the

constraint. (ENABLE) NOVALIDATE only ensures that all new DML operations on

the constrained data comply with the constraint. (DISABLE) VALIDATE

disables the constraint and drops the index on the constraint, but keeps

the constraint valid. (DISABLE) NOVALIDATE signifies that Oracle makes no

effort to maintain the constraint (because it is disabled) and cannot

guarantee that the constraint is true (because it is not being validated).

The default is NOVALIDATE.

Properties for FOREIGN_KEY:

Name: DEFERRABLE

Type: STRING

Valid Values: , DEFERRABLE, NOT DEFERRABLE

Default: ''

Specify DEFERRABLE to indicate that in subsequent transactions you can use

the SET CONSTRAINT[S] clause to defer checking of this constraint until

after the transaction is committed. Specify NOT DEFERRABLE to indicate that

in subsequent transactions you cannot use the SET CONSTRAINT[S] clause to

defer checking of this constraint until the transaction is committed. The

default is NOT DEFERRABLE.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: ENABLECONSTRAINT

Type: STRING

Valid Values: , DISABLE, ENABLE

Default: ''

Specify ENABLE if you want the constraint to be applied to the data in the

table. Specify DISABLE to disable the integrity constraint. The default is

ENABLE.

Name: EXCEPTIONSINTO

Type: STRING

Valid Values: N/A

Default: ''

Specify an exceptions table ([schema.]table). The EXCEPTIONS table or the

table you specify must exist on your local database. If you create your own

exceptions table, then it must follow the format prescribed by one of the

two scripts supplied by Oracle. Do not use this property with NOVALIDATE

option.

Name: INITIALLY

Type: STRING

Valid Values: , DEFERRED, IMMEDIATE

Default: ''

Specify (INITIALLY) IMMEDIATE to indicate that Oracle should check a

DEFERRABLE constraint at the end of each subsequent SQL statement. Specify

(INITIALLY) DEFERRED to indicate that Oracle should check a DEFERRABLE

constraint at the end of subsequent transactions. The default is

(INITIALLY) IMMEDIATE.

Name: ONDELETE

Type: STRING

Valid Values: , CASCADE, SET NULL

Default: ''

Specify CASCADE if you want Oracle to remove dependent foreign key values.

Specify SET NULL if you want Oracle to convert dependent foreign key values

to NULL.

Name: RELY

Type: STRING

Valid Values: , NORELY, RELY

Default: ''

Specify RELY to activate an existing constraint in NOVALIDATE mode for

query rewrite in an unenforced query rewrite integrity mode. The default is

NORELY.

Name: SUBSTITUTE_KEY

Type: BOOLEAN

Valid Values: true, false

Default: false

This is related to Streams Support. If this is true, deployment will result

only in creation of the key metadata. The constraint itself will not be

enforced. This will be done by creating a Streams substitute key.

Name: VALIDATECONSTRAINT

Type: STRING

Valid Values: , NOVALIDATE, VALIDATE

Default: ''

The behavior of VALIDATE and NOVALIDATE always depends on whether the

constraint is enabled or disabled, either explicitly or by default.

(ENABLE) VALIDATE specifies that all old and new data must compliy with the

constraint. (ENABLE) NOVALIDATE only ensures that all new DML operations on

the constrained data comply with the constraint. (DISABLE) VALIDATE

disables the constraint and drops the index on the constraint, but keeps

the constraint valid. (DISABLE) NOVALIDATE signifies that Oracle makes no

effort to maintain the constraint (because it is disabled) and cannot

guarantee that the constraint is true (because it is not being validated).

The default is NOVALIDATE.

Properties for INDEX:

Name: BUFFER_POOL

Type: STRING

Valid Values: , DEFAULT, KEEP, RECYCLE

Default: ''

Specify a default buffer pool (cache) for table or partition object. The

default is DEFAULT.

Name: COMPUTESTATISTICS

Type: STRING

Valid Values: , NO, YES

Default: ''

Specify YES to collect statistics at relatively little cost during the

creation of an index.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: FREELISTGROUPS

Type: STRING

Valid Values: N/A

Default: ''

Specify the number of groups of free lists for the database object you are

creating. The default is 1.

Name: FREELISTS

Type: STRING

Valid Values: N/A

Default: ''

Specify the number of free lists for each of the free list groups for the

table, partition, cluster, or index. The default is 1.

Name: INDEXORDER

Type: STRING

Valid Values: , ASC, DESC

Default: ''

Use ASC or DESC to indicate whether the index should be created in

ascending or descending order. The Oracle default is ASC.

Name: INITIAL

Type: STRING

Valid Values: N/A

Default: ''

Specify in bytes the size of the first extent. Use K or M to specify size

in kilobytes or megabytes.

Name: INITRANS

Type: STRING

Valid Values: N/A

Default: ''

Specify the initial number (2-255) of concurrent transaction entries

allocated within each data block allocated to the database object. The

default is 2 for Index.

Name: KEYCOMPRESS

Type: STRING

Valid Values: , COMPRESS, NOCOMPRESS

Default: ''

Specify COMPRESS to enable key compression.

Name: KEYCOMPRESSPREFIXLENGTH

Type: STRING

Valid Values: N/A

Default: ''

Specify the prefix length (number of prefix columns to compress). For

unique indexes, the valid range of prefix length values is from 1 to the

number of key columns minus 1. The default prefix length is the number of

key columns minus 1. For nonunique indexes, the valid range of prefix

length values is from 1 to the number of key columns. The default prefix

length is the number of key columns. Oracle compresses only nonpartitioned

indexes that are nonunique or unique indexes of at least two columns. You

cannot specify COMPRESS for a bitmap index.

Name: LOGGING_MODE

Type: STRING

Valid Values: , LOGGING, NOLOGGING

Default: ''

Specify whether the creation of the table and of any indexes required

because of constraints, partition, or LOB storage characteristics will be

logged in the redo log file (LOGGING) or not (NOLOGGING). The default is

LOGGING.

Name: MAXEXTENTS

Type: STRING

Valid Values: N/A

Default: ''

Specify the total number of extents, including the first, that Oracle can

allocate for the object.

Name: MAXTRANS

Type: STRING

Valid Values: N/A

Default: ''

Specify the maximum number (2-255) of concurrent transactions that can

update a data block allocated to the database object.

Name: MINEXTENTS

Type: STRING

Valid Values: N/A

Default: ''

Specify the total number of extents to allocate when the object is created.

Name: NEXT

Type: STRING

Valid Values: N/A

Default: ''

Specify in bytes the size of the next extent to be allocated. Use K or M to

specify size in kilobytes or megabytes.

Name: ONLINE

Type: STRING

Valid Values: , NO, YES

Default: ''

Specify YES to indicate that DML operations on the table will be allowed

during creation of the index.

Name: OPTIMAL

Type: STRING

Valid Values: N/A

Default: ''

Specifies an optimal size in bytes for a rollback segment. Use K or M to

specify this size in kilobytes or megabytes. Specify NULL for no optimal

size for the rollback segment. The default is NULL.

Name: OVERFLOW

Type: STRING

Valid Values: N/A

Default: ''

Enter a comma separated list of Index tablespaces for overflow data. For

simple-partitoned object, it is used for HASH BY QUANTITY partition

overflow Index tablespaces. The number of Index tablespaces does not have

to equal the number of partitions. If the number of partitions is greater

than the number of Index tablespaces, then Oracle cycles through the names

of the Index tablespaces.

Name: PARALLEL_ACCESS_MODE

Type: STRING

Valid Values: , NOPARALLEL, PARALLEL

Default: ''

Enables or disables parallel processing when the table is created. Also

enables or disables parallel processing or access. The default is PARALLEL.

Name: PARALLEL_DEGREE

Type: STRING

Valid Values: N/A

Default: ''

Enter degree of parallelism, which is the number of parallel threads used

in the parallel operation.

Name: PARTITION_TABLESPACE_LIST

Type: STRING

Valid Values: N/A

Default: ''

Enter a comma separated list of tablespaces for a locally partitioned

index. For simple-partitoned object, it is used for HASH BY QUANTITY

partition tablespaces. If specified, then individual local Hash index

partitions specified will be ignored for Local Hash or Range-Hash Index

partitioning.

Name: PCTFREE

Type: STRING

Valid Values: N/A

Default: ''

Specify a whole number representing the percentage (0-99) of space in each

data block of the database object reserved for future updates to the rows

of the object. The default is 10.

Name: PCTINCREASE

Type: STRING

Valid Values: N/A

Default: ''

Specify the percent by which the third and subsequent extents grow over the

preceding extent. The default is 50.

Name: SORT

Type: STRING

Valid Values: , NOSORT, REVERSE, SORT

Default: ''

Specify NOSORT to indicate to Oracle that the rows are already stored in

the database in ascending order. Specify REVERSE to store the bytes of the

index block in reverse order, excluding the rowid.

Name: SUBSTITUTE_KEY

Type: BOOLEAN

Valid Values: true, false

Default: false

This is related to Streams Support. If this is true, deployment will result

only in creation of the key metadata. The constraint itself will not be

enforced. This will be done by creating a Streams substitute key.

Name: TABLESPACE

Type: STRING(30)

Valid Values: N/A

Default: ''

Use the Tablespace parameter to specify the name of tablespace.

Properties for PARTITION:

Name: BUFFER_POOL

Type: STRING

Valid Values: , DEFAULT, KEEP, RECYCLE

Default: ''

Specify a default buffer pool (cache) for table or partition object. The

default is DEFAULT.

Name: DATA_SEGMENT_COMPRESSION

Type: STRING

Valid Values: , COMPRESS, NOCOMPRESS

Default: ''

Use this clause to instruct Oracle whether to compress data segments to

reduce disk use. The default is NOCOMPRESS.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: FREELISTGROUPS

Type: STRING

Valid Values: N/A

Default: ''

Specify the number of groups of free lists for the database object you are

creating. The default is 1.

Name: FREELISTS

Type: STRING

Valid Values: N/A

Default: ''

Specify the number of free lists for each of the free list groups for the

table, partition, cluster, or index.

Name: INITIAL

Type: STRING

Valid Values: N/A

Default: ''

Specify in bytes the size of the first extent. Use K or M to specify size

in kilobytes or megabytes.

Name: INITRANS

Type: STRING

Valid Values: N/A

Default: ''

Specify the initial number (1-255) of concurrent transaction entries

allocated within each data block allocated to the database object. The

default is 1 for Table and 2 for Index.

Name: LOGGING_MODE

Type: STRING

Valid Values: , LOGGING, NOLOGGING

Default: ''

Specify whether the creation of the table and of any indexes required

because of constraints, partition, or LOB storage characteristics will be

logged in the redo log file (LOGGING) or not (NOLOGGING). The default is

LOGGING.

Name: MAXEXTENTS

Type: STRING

Valid Values: N/A

Default: ''

Specify the total number of extents, including the first, that Oracle can

allocate for the object.

Name: MAXTRANS

Type: STRING

Valid Values: N/A

Default: ''

Specify the maximum number (1-255) of concurrent transactions that can

update a data block allocated to the database object.

Name: MINEXTENTS

Type: STRING

Valid Values: N/A

Default: ''

Specify the total number of extents to allocate when the object is created.

Name: NEXT

Type: STRING

Valid Values: N/A

Default: ''

Specify in bytes the size of the next extent to be allocated. Use K or M to

specify size in kilobytes or megabytes.

Name: OPTIMAL

Type: STRING

Valid Values: N/A

Default: ''

Specifies an optimal size in bytes for a rollback segment. Use K or M to

specify this size in kilobytes or megabytes. Specify NULL for no optimal

size for the rollback segment. The default is NULL.

Name: PCTFREE

Type: STRING

Valid Values: N/A

Default: ''

Specify a whole number representing the percentage (0-99) of space in each

data block of the database object reserved for future updates to the rows

of the object. The default is 10.

Name: PCTINCREASE

Type: STRING

Valid Values: N/A

Default: ''

Specify the percent by which the third and subsequent extents grow over the

preceding extent. The default is 50.

Name: PCTUSED

Type: STRING

Valid Values: N/A

Default: ''

Specify a whole number representing the minimum percentage (0-99) of used

space that Oracle maintains for each data block of the database object. The

default is 40.

Name: TABLESPACE

Type: STRING(30)

Valid Values: N/A

Default: ''

Use the Tablespace parameter to specify the name of tablespace.

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

getMaterializedViewSCOorDependentsClause

This clause will retrieves materialized view components like columns, keys,

etc. or relational objects that this materialized view have referential

dependency on.

getConfigurationPropertiesClause

This clauses gets the configuration properties of the object.

propertyNameList

The list of properties.

See Also

OMBRETRIEVE, OMBCREATE MATERIALIZED_VIEW, OMBALTER MATERIALIZED_VIEW, OMBDROP MATERIALIZED_VIEW

OMBRETRIEVE MDL_ACTION_PLAN

Purpose

Retrieve the details of an existing metadata loader action plan.

Prerequisites

Connection must be established to the repository.

Syntax

retrieveMDLActionPlanCommand =  OMBRETRIEVE ( MDL_ACTION_PLAN ) 
     "QUOTED_STRING" ( "getActionsClause" | "retrieveActionClause" )
getActionsClause =  GET ACTIONS
retrieveActionClause =  ACTION "QUOTED_STRING" GET "getReferenceClause"
getReferenceClause =  ( REF | REFERENCE )

Keywords And Parameters

retrieveMDLActionPlanCommand

Retrieve the details of an existing metadata loader action plan.

getActionsClause

Get a list of actions from an action plan.

retrieveActionClause

Retrieve a set of references of an action.

getReferenceClause

Retrieve the object type and its references for an action.

See Also

OMBCREATE MDL_ACTION_PLAN, OMBALTER MDL_ACTION_PLAN, OMBDROP MDL_ACTION_PLAN, OMUEXPORT MDL_FILE

OMBRETRIEVE NESTED_TABLE

Purpose

Retrieve details of the Nested Table.

Prerequisites

Should be in the context of an Oracle Module.

Syntax

retrieveNestedTableCommand =  OMBRETRIEVE NESTED_TABLE "QUOTED_STRING" ( 
     GET ( "getPropertiesClause" | "getReferenceIconSetClause" ) )
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
getReferenceIconSetClause =  ( REF | REFERENCE ) ICONSET
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveNestedTableCommand

Retrieves the details of the Nested Table with the given name.

getPropertiesClause

This clause retrieves all the properties.

Basic properties for NESTED_TABLE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Nested Table

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Nested Table

Name: DATATYPE

Type: STRING(20)

Valid Values: BINARY_DOUBLE, BINARY_FLOAT, BLOB, CHAR, CLOB, DATE, FLOAT,

INTEGER, INTERVAL DAY TO SECOND, INTERVAL YEAR TO MONTH, NCHAR, NCLOB,

NUMBER, NVARCHAR2, RAW, SYS.ANYDATA, SYS.LCR$_ROW_RECORD, SYS.XMLFORMAT,

TIMESTAMP, TIMESTAMP WITH LOCAL TIME ZONE, TIMESTAMP WITH TIME ZONE,

VARHCAR, VARCHAR2, XMLTYPE

Default: ''

Datatype of the Base Element of the Nested Table

Properties for NESTED_TABLE:

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

propertyNameList

The list of properties.

See Also

OMBRETRIEVE

OMBRETRIEVE OBJECT_TYPE

Purpose

Retrieve details of the Object Type.

Prerequisites

Should be in the context of an Oracle Module.

Syntax

retrieveObjectTypeCommand =  OMBRETRIEVE OBJECT_TYPE "QUOTED_STRING" ( 
     "retrieveObjectTypeClause" | "retrieveAttributeClause" )
retrieveObjectTypeClause =  GET ( "getPropertiesClause" | 
     "getReferenceIconSetClause" | "getAttributesClause" )
retrieveAttributeClause =  OBJECT_TYPE_ATTRIBUTE "QUOTED_STRING" GET 
     "getPropertiesClause"
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
getReferenceIconSetClause =  ( REF | REFERENCE ) ICONSET
getAttributesClause =  OBJECT_TYPE_ATTRIBUTES
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveObjectTypeCommand

Retrieves the details of the Object Type with the given name.

retrieveObjectTypeClause

Gets the properties or the Attribute names.

retrieveAttributeClause

Gets the properties of the Attribute with the given name.

getPropertiesClause

This clause retrieves all the properties.

Basic properties for OBJECT_TYPE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Object Type

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Object Type

Basic properties for OBJECT_TYPE_ATTRIBUTE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Attribute

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Attribute

Name: DATATYPE

Type: STRING(20)

Valid Values: BINARY_DOUBLE, BINARY_FLOAT, BLOB, CHAR, CLOB, DATE, FLOAT,

INTEGER, INTERVAL DAY TO SECOND, INTERVAL YEAR TO MONTH, NCHAR, NCLOB,

NUMBER, NVARCHAR2, RAW, SYS.ANYDATA, SYS.LCR$_ROW_RECORD, SYS.XMLFORMAT,

TIMESTAMP, TIMESTAMP WITH LOCAL TIME ZONE, TIMESTAMP WITH TIME ZONE,

VARHCAR, VARCHAR2, XMLTYPE

Default: ''

Datatype of the Attribute

Properties for OBJECT_TYPE:

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

getAttributesClause

Gets the names of all the Attributes of the Object Type with the given

name.

propertyNameList

The list of properties.

See Also

OMBRETRIEVE, OMBALTER OBJECT_TYPE, OMBCREATE OBJECT_TYPE, OMBDROP OBJECT_TYPE

OMBRETRIEVE ORACLE_MODULE

Purpose

Retrieve details of the Oracle module.

Prerequisites

Should be in the context of project.

Syntax

retrieveOracleModuleCommand =  OMBRETRIEVE ORACLE_MODULE "QUOTED_STRING" ( 
     "getPropertiesClause" | "getReferenceLocationClause" | 
     "getReferenceDefaultLocationClause" | 
     "getReferenceMetadataLocationClause" | "getReferenceIconSetClause" | 
     "getReferenceLocationsClause" )
getPropertiesClause =  GET PROPERTIES "(" "propertyNameList" ")"
getReferenceLocationClause =  GET ( REF | REFERENCE ) LOCATION
getReferenceDefaultLocationClause =  GET ( REF | REFERENCE ) DEFAULT 
     LOCATION
getReferenceMetadataLocationClause =  GET ( REF | REFERENCE ) 
     METADATA_LOCATION
getReferenceIconSetClause =  GET ( REF | REFERENCE ) ICONSET
getReferenceLocationsClause =  GET ( REF | REFERENCE ) LOCATIONS
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveOracleModuleCommand

This command retrieves the details of an Oracle Module

QUOTED_STRING

Name of the existing Oracle module or path to the Oracle module.

getPropertiesClause

Retrieve a set of properties that is associated with an Oracle Module.

Basic properties for ORACLE_MODULE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: NAME

Business name of an Oracle Module

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of an Oracle Module

Name: MODULE_TYPE

Type: STRING

Valid Values: N/A

Default: N/A

Type of oracle module. Supported values are: 'WAREHOUSE_TARGET',

'DATA_SOURCE'.By default, it is 'WAREHOUSE_TARGET'.

Properties for ORACLE_MODULE:

Name: ABAP_DIRECTORY

Type: STRING

Valid Values: N/A

Default: abap\

Location where SAP data is dumped as flat files

Name: ABAP_EXTENSION

Type: STRING

Valid Values: N/A

Default: .abap

File name extension for ABAP scripts

Name: ABAP_RUN_PARAMETER_FILE

Type: STRING

Valid Values: N/A

Default: _run.ini

Run Parameter File Suffix for the parameter script in a ABAP job.

Name: ABAP_SPOOL_DIRECTORY

Type: STRING

Valid Values: N/A

Default: abap\log\

Location where ABAP scripts are buffered during script generation

processing.

Name: APPLICATION_SHORT_NAME

Type: STRING

Valid Values: N/A

Default: WB

Application Short Name

Name: ARCHIVE_DIRECTORY

Type: STRING

Valid Values: N/A

Default: archive\

Archive Directory

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

If this is a source module, this value indicates the location from which

data will be read. If this is a target warehouse module, this value

indicates the location where generated code will be deployed to and/or

where data will be written to.

Name: DDL_DIRECTORY

Type: STRING

Valid Values: N/A

Default: ddl\

Location where scripts for database objects for the target schema are

stored.

Name: DDL_EXTENSION

Type: STRING

Valid Values: N/A

Default: .ddl

File name extension for DDL scripts.

Name: DDL_SPOOL_DIRECTORY

Type: STRING

Valid Values: N/A

Default: ddl\log\

Location where DDL scripts are buffered during script generation

processing.

Name: DEFAULT_INDEX_TABLESPACE

Type: STRING(30)

Valid Values: N/A

Default: ''

Default name of tablespace to install indexes into.

Name: DEFAULT_OBJECT_TABLESPACE

Type: STRING(30)

Valid Values: N/A

Default: ''

Default name of tablespace to install objects into.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: END_OF_LINE

Type: STRING

Valid Values: N/A

Default: \r\n

End of Line

Name: INPUT_DIRECTORY

Type: STRING

Valid Values: N/A

Default: input\

Input Directory

Name: INVALID_DIRECTORY

Type: STRING

Valid Values: N/A

Default: invalid\

Directory for SQL*Loader errors and rejected records

Name: LIB_DIRECTORY

Type: STRING

Valid Values: N/A

Default: lib\

LIB Directory

Name: LIB_EXTENSION

Type: STRING

Valid Values: N/A

Default: .lib

LIB Extension

Name: LIB_SPOOL_DIRECTORY

Type: STRING

Valid Values: N/A

Default: lib\log\

LIB Spool Directory

Name: LOADER_DIRECTORY

Type: STRING

Valid Values: N/A

Default: ctl\

Location where control files are stored.

Name: LOADER_EXTENSION

Type: STRING

Valid Values: N/A

Default: .ctl

Suffix for the loader scripts

Name: LOADER_RUN_PARAMETER_FILE

Type: STRING

Valid Values: N/A

Default: _run.ini

Suffix for the parameter initialization file.

Name: LOG_DIRECTORY

Type: STRING

Valid Values: N/A

Default: log\

Log Directory for the SQL*Loader

Name: MAIN_APPLICATION_SHORT_NAME

Type: STRING

Valid Values: N/A

Default: ora

Main Application Short Name

Name: PLSQL_DIRECTORY

Type: STRING

Valid Values: N/A

Default: pls\

Location where PL/SQL scripts are stored.

Name: PLSQL_EXTENSION

Type: STRING

Valid Values: N/A

Default: .pls

File name extension for PL/SQL scripts.

Name: PLSQL_GENERATION_MODE

Type: STRING

Valid Values: Default, Oracle10g, Oracle10gR2, Oracle11gR1, Oracle8i,

Oracle9i

Default: Default

Generation mode controls validation and generation for version specific

features.

Name: PLSQL_RUN_PARAMETER_FILE

Type: STRING

Valid Values: N/A

Default: _run.ini

Suffix for the parameter script in a PL/SQL job.

Name: PLSQL_SPOOL_DIRECTORY

Type: STRING

Valid Values: N/A

Default: pls\log\

Location where PL/SQL scripts are buffered during script generation

processing.

Name: RECEIVE_DIRECTORY

Type: STRING

Valid Values: N/A

Default: receive\

Receive Directory

Name: SORT_DIRECTORY

Type: STRING

Valid Values: N/A

Default: sort\

Sort Directory

Name: STREAMS_ADMINISTRATOR_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location corresponding to the Streams Administrator

Name: TCL_DIRECTORY

Type: STRING

Valid Values: N/A

Default: tcl\

Location for TCL scripts that are generated after registration with Oracle

Enterprise Manager

Name: TOP_DIRECTORY

Type: STRING

Valid Values: N/A

Default: ..\..\codegen\

Top Directory where generated code will get stored

Name: WORK_DIRECTORY

Type: STRING

Valid Values: N/A

Default: work\

Work Directory

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

getReferenceLocationClause

Retrieve the name of the runtime location referenced by this Oracle module.

getReferenceDefaultLocationClause

Retrieve the default runtime location referenced by this Oracle module.

getReferenceIconSetClause

Retrieve the icon set referenced by this Oracle module.

getReferenceLocationsClause

Retrieve the runtime locations referenced by this Oracle module.

propertyNameList

Comma separated list of property names. Property names are unquoted.

See Also

OMBRETRIEVE

OMBRETRIEVE PACKAGE

Purpose

Retrieve details of the Package.

Prerequisites

Should be in the context of a Oracle Module or Transformation Module.

A Transformation Module may be WB_CUSTOM_TRANS for Public Transformations

or WB_PREDEFINED_TRANS for Predefined Transformations.

WB_CUSTOM_TRANS may by modified by an administrator. WB_PREDEFINED_TRANS

may not be modified.

WB_CUSTOM_TRANS and WB_PREDEFINED_TRANS are not dependent on any project.

Syntax

retrievePackageCommand =  OMBRETRIEVE PACKAGE "QUOTED_STRING" ( 
     "getPropertiesClause" | "getRelationalDependentsClause" | 
     "getReferenceIconSetClause" )
getPropertiesClause =  GET PROPERTIES "(" "propertyNameList" ")"
getRelationalDependentsClause =  GET ( REF | REFERENCE ) ( TABLES | VIEWS |
      MATERIALIZED_VIEWS | SEQUENCES | FUNCTIONS | PROCEDURES | PACKAGES )
getReferenceIconSetClause =  GET ( REF | REFERENCE ) ICONSET
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrievePackageCommand

This command retrieves the details of a Package

QUOTED_STRING

Name of the existing Package or path to the Package.

getPropertiesClause

Used to get properties (core, user-defined) for packages. Valid properties

are shown below:

Basic properties for PACKAGE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the package

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the package

Name: PACKAGE_SPEC

Type: STRING

Valid Values: N/A

Default: ''

Retrieves the Package Spec of Imported Package

Name: PACKAGE_BODY

Type: STRING

Valid Values: N/A

Default: ''

Retrieves the Package Body of Imported Package

Name: IS_IMPORTED

Type: BOOLEAN

Valid Values: N/A

Default: ''

Retrieves 'true' if the Package is Imported otherwise 'false'

Properties for PACKAGE:

Name: AUTHID

Type: STRING

Valid Values: Current_User, Definer, None

Default: None

Generate the package with selected AUTHID option. Function will be executed

with the permissions defined by the AUTHID clause rather than the function

owner's permissions.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

getRelationalDependentsClause

This clause retrieves referential dependencies to other relational objects.

propertyNameList

Comma separated list of property names. Property names are unquoted.

See Also

OMBRETRIEVE

OMBRETRIEVE PLSQL_RECORD_TYPE

Purpose

Retrieve details of the PLSQL Record Type.

Prerequisites

Should be in the context of a Package.

Syntax

retrievePlSqlRecordTypeCommand =  OMBRETRIEVE PLSQL_RECORD_TYPE 
     "QUOTED_STRING" ( "retrievePlSqlRecordTypeClause" | 
     "retrievePlSqlRecordAttributeClause" )
retrievePlSqlRecordTypeClause =  GET ( "getPropertiesClause" | 
     "getReferenceIconSetClause" | "getPlSqlRecordAttributesClause" )
retrievePlSqlRecordAttributeClause =  ATTRIBUTE "QUOTED_STRING" GET 
     "getPropertiesClause"
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
getReferenceIconSetClause =  ( REF | REFERENCE ) ICONSET
getPlSqlRecordAttributesClause =  ATTRIBUTES
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrievePlSqlRecordTypeCommand

Retrieves the details of the PLSQL Record Type with the given name.

retrievePlSqlRecordTypeClause

Gets the properties or the Attribute names.

retrievePlSqlRecordAttributeClause

Gets the properties of the Attribute with the given name.

getPropertiesClause

This clause retrieves all the properties.

Basic properties for PLSQL_RECORD_TYPE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the PLSQL Record Type

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the PLSQL Record Type

Basic properties for ATTRIBUTE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Attribute

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Attribute

Name: DATATYPE

Type: STRING(20)

Valid Values: BINARY_DOUBLE, BINARY_FLOAT, BLOB, CHAR, CLOB, DATE, FLOAT,

INTEGER, INTERVAL DAY TO SECOND, INTERVAL YEAR TO MONTH, NCHAR, NCLOB,

NUMBER, NVARCHAR2, RAW, SYS.ANYDATA, SYS.LCR$_ROW_RECORD, SYS.XMLFORMAT,

TIMESTAMP, TIMESTAMP WITH LOCAL TIME ZONE, TIMESTAMP WITH TIME ZONE,

VARHCAR, VARCHAR2, XMLTYPE

Default: ''

Datatype of the Attribute

Properties for PLSQL_RECORD_TYPE:

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Properties for ATTRIBUTE:

Name: ADDRESS_TYPE

Type: STRING

Valid Values: NA_ADDRTYPE_DUAL, NA_ADDRTYPE_NORMAL

Default: NA_ADDRTYPE_NORMAL

You can designate an address type as Normal or Dual. For example, a dual

address occurs when a record contains both a street address and a P.O. Box;

this is common with business data. A normal address contains only one type

of address.

Name: ATTRIBUTE_ROLE

Type: STRING

Valid Values: END_DATE, LOOKUP_ACTIVE_DATE, MEASURE, NATURAL_KEY, NONE,

PARENT_NATURAL_KEY, PARENT_REF_KEY, PARENT_SURROGATE_KEY, PREV_VALUE,

START_DATE, SURROGATE_KEY, TRIGGER

Default: NONE

The type of role to indicate how this attribute will be used in history

logging. History As Previous Value indicates that this attribute will be

used to keep previous value. Surrogate Identifier indicates that this

attribute will be used to keep the surrogate identifier. Natural Identifier

indicates that this attribute will be used to keep the natural identifier.

Effective Time indicates that this attribute will be used as the effective

time of the version. Expiration Time indicates that this attribute will be

used as the expiration time of the version. Trigger indicates that this

attribute will be used to trigger history logging. If none is specified,

this attribute will be used to keep current value.

Name: BINDING_COLUMN_NAME

Type: STRING

Valid Values: N/A

Default: ''

The binding column name for this attribute

Name: DATA_TYPE

Type: STRING

Valid Values: N/A

Default: ''

The data type of the attribute

Name: DEFAULT_VALUE

Type: STRING

Valid Values: N/A

Default: ''

The Default Value for the function input parameter

Name: DIMENSION_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The dimension attribute referenced to by this level attribute.

Name: EXPRESSION

Type: STRING

Valid Values: N/A

Default: ''

The output expression for the attribute

Name: FIELD_DATA_TYPE

Type: STRING

Valid Values: BYTEINT, CHAR, DATE, DECIMAL, DECIMAL EXTERNAL, DOUBLE,

FLOAT, FLOAT EXTERNAL, GRAPHIC, GRAPHIC EXTERNAL, INTEGER, INTEGER

EXTERNAL, INTEGER UNSIGNED, INTERVAL DAY TO SECOND, INTERVAL YEAR TO MONTH,

LONG VARRAW, RAW, SMALLINT, SMALLINT UNSIGNED, TIMESTAMP, TIMESTAMP WITH

LOCAL TIME ZONE, TIMESTAMP WITH TIME ZONE, VARCHAR, VARCHARC, VARGRAPHIC,

VARRAW, VARRAWC, ZONED, ZONED EXTERNAL

Default: CHAR

SQL Data Type of the field in the file to which this operator is bound.

Name: FIELD_DATA_TYPE_LENGTH

Type: NUMBER

Valid Values: N/A

Default: 0

Field Length of the field in the file to which this operator is bound.

Name: FIELD_DATA_TYPE_PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

Field Precision of the field in the file to which this operator is bound.

Name: FIELD_DATA_TYPE_SCALE

Type: NUMBER

Valid Values: N/A

Default: 0

Field Scale of the field in the file to which this operator is bound.

Name: FIELD_DEFAULTIF_VALUE

Type: STRING

Valid Values: N/A

Default: ''

The expression that indicates the value of the field is blank or zero,

based on the datatype.

Name: FIELD_END_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The ending position of the field in the file

Name: FIELD_MASK

Type: STRING

Valid Values: N/A

Default: ''

The mask for the field

Name: FIELD_NULLIF_VALUE

Type: STRING

Valid Values: N/A

Default: ''

The expression that indicates the value of the field is null

Name: FIELD_START_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The starting position of the field in the file

Name: FRACTIONAL_SECONDS_PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

The data fractional seconds precision value of the attribute

Name: FUNCTION_RETURN

Type: BOOLEAN

Valid Values: true, false

Default: false

Specifies whether this output is the return value of this function

Name: GROUP_KEY

Type: BOOLEAN

Valid Values: true, false

Default: false

A boolean value to indicate whether this input attribute is a part of the

unpivot group key.

Name: INPUT_ROLE

Type: STRING

Valid Values: NA_ADDRESS, NA_ADDRESS2, NA_CITY, NA_COUNTRYCODE,

NA_COUNTRYNAME, NA_FIRMNAME, NA_FIRSTNAME, NA_FIRSTPARTNAME, NA_LASTLINE,

NA_LASTLINE_2, NA_LASTNAME, NA_LASTPARTNAME, NA_LINE1, NA_LINE10, NA_LINE2,

NA_LINE3, NA_LINE4, NA_LINE5, NA_LINE6, NA_LINE7, NA_LINE8, NA_LINE9,

NA_LOCALITYNAME, NA_LOCALITY_2, NA_LOCALITY_3, NA_LOCALITY_4,

NA_MIDDLENAME, NA_MIDDLENAME2, NA_MIDDLENAME3, NA_NEIGHBORHOOD, NA_NONE,

NA_PASSTHRU, NA_PERSON, NA_PERSON2, NA_PERSON3, NA_POSTALCODE, NA_POSTNAME,

NA_PRENAME, NA_PRIMARYADDRESS, NA_SECONDARYADDRESS, NA_STATE

Default: NA_NONE

Assigns a name-address input role to the selected input attribute

Name: INSTANCE

Type: STRING

Valid Values: NA_INSTANCE_FIFTH, NA_INSTANCE_FIRST, NA_INSTANCE_FOURTH,

NA_INSTANCE_SECOND, NA_INSTANCE_SIXTH, NA_INSTANCE_THIRD

Default: NA_INSTANCE_FIRST

The instance option is used when an address contains multiple names, you

can specify which name in the group should be used. In addition, you can

use this option to assign an address type to a miscellaneous address

component.

Name: IS_CAST_TARGET

Type: BOOLEAN

Valid Values: true, false

Default: false

Description not available.

Name: IS_OPTIONAL

Type: BOOLEAN

Valid Values: true, false

Default: false

If true, the input is not required to be connected

Name: IS_PREDEFINED_CONSTANT

Type: BOOLEAN

Valid Values: true, false

Default: false

Description not available.

Name: LENGTH

Type: NUMBER

Valid Values: N/A

Default: 0

The data length value of the attribute

Name: LEVEL_ATTRIBUTE_COLNAME_NAME

Type: STRING

Valid Values: N/A

Default: ''

Column name in the AW staging table and source view for this attribute.

Name: LEVEL_ATTRIBUTE_LEVEL_INDICATOR_COLNAME

Type: STRING

Valid Values: N/A

Default: ''

Level indicating columns name. This level will contain the name of the name

of the level this parent reference belongs to. This is relavant only for

skip level hierarchies.

Name: LEVEL_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name of the Level Attribute.

Name: LEVEL_RELATIONSHIP_NAME

Type: STRING

Valid Values: N/A

Default: ''

The level relationship name associated to this attribute.

Name: LOAD_COLUMN_WHEN_INSERTING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will particiate in the

insert load operation.

Name: LOAD_COLUMN_WHEN_UPDATING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will particiate in the

update load operation.

Name: LOOKUP_ATTRIBUTE_ROLE

Type: STRING

Valid Values: DIMENSION_KEY, END_DATE, NATURAL_KEY, NONE, PREV_VALUE,

START_DATE, SURROGATE_KEY, TRIGGER

Default: NONE

The type of role to indicate how this attribute will be used in history

logging. History As Previous Value indicates that this attribute will be

used to keep previous value. Surrogate Identifier indicates that this

attribute will be used to keep the surrogate identifier. Natural Identifier

indicates that this attribute will be used to keep the natural identifier.

Effective Time indicates that this attribute will be used as the effective

time of the version. Expiration Time indicates that this attribute will be

used as the expiration time of the version. Trigger indicates that this

attribute will be used to trigger history logging. If none is specified,

this attribute will be used to keep current value.

Name: MATCHING_ROW

Type: NUMBER

Valid Values: 1 - 1000

Default: 1

An positive integer to indicate from which row within the unpivot group

this output attribute obtains its data.

Name: MATCH_COLUMN_WHEN_DELETING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will be used to

construct the matching criteria between the incoming data and the existing

data on the target during the delete load operation.

Name: MATCH_COLUMN_WHEN_UPDATING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will be used to

construct the matching criteria between the incoming data and the existing

data on the target during the update load operation.

Name: MERGE_ATTR

Type: STRING

Valid Values: N/A

Default: ''

Related merge attribute

Name: OUTPUT_COMPONENT

Type: STRING

Valid Values: NA_ADDRESS, NA_ADDRESS2, NA_ADDRESSCORRECTED, NA_ADDRESSTYPE,

NA_AUTO_ZONE_IND, NA_BOXNAME, NA_BOXNUMBER, NA_BUILDINGNAME, NA_CART,

NA_CBSA_CODE, NA_CBSA_DESC, NA_CENSUSID, NA_CHECKDIGIT, NA_CITY,

NA_CITYCORRECTED, NA_CITYMATCH, NA_CITYWARNING, NA_CITY_ABBREV,

NA_CITY_ABBREV_2, NA_CITY_ALTERNATE, NA_COMPLEX, NA_COUNTRYCODE,

NA_COUNTRYCODE3, NA_COUNTRYNAME, NA_COUNTYNAME, NA_DELIVERYBEATCODE,

NA_DELIVERYOFFICECODE, NA_DELIVERYPOINT, NA_EMAIL, NA_EXTRA_1, NA_EXTRA_10,

NA_EXTRA_11, NA_EXTRA_12, NA_EXTRA_13, NA_EXTRA_14, NA_EXTRA_15,

NA_EXTRA_16, NA_EXTRA_17, NA_EXTRA_18, NA_EXTRA_19, NA_EXTRA_2,

NA_EXTRA_20, NA_EXTRA_3, NA_EXTRA_4, NA_EXTRA_5, NA_EXTRA_6, NA_EXTRA_7,

NA_EXTRA_8, NA_EXTRA_9, NA_FIPS, NA_FIPSCOUNTY, NA_FIPS_PLACE_CODE,

NA_FIRMCOUNT, NA_FIRMNAME, NA_FIRM_LOC, NA_FIRSTNAME, NA_FIRSTNAMESTD,

NA_GENDER, NA_GEO_MATCH_PREC, NA_INSTALLATIONNAME, NA_INSTALLATIONTYPE,

NA_ISADDRESSVERIFIABLE, NA_ISFOUND, NA_ISGOODADDRESS, NA_ISGOODGROUP,

NA_ISGOODNAME, NA_ISPARSED, NA_LACS, NA_LASTLINE, NA_LASTLINE_2,

NA_LASTNAME, NA_LATITUDE, NA_LOCALITYCODE, NA_LOCALITYNAME, NA_LOCALITY_2,

NA_LOCALITY_3, NA_LOCALITY_4, NA_LONGITUDE, NA_LOT, NA_LOT_ORDER, NA_MCD,

NA_MIDDLENAME, NA_MIDDLENAME2, NA_MIDDLENAME2STD, NA_MIDDLENAME3,

NA_MIDDLENAME3STD, NA_MIDDLENAMESTD, NA_MISCADDRESS, NA_MSA,

NA_NAMEDESIGNATOR, NA_NAMEWARNING, NA_NAME_FIRM_EXTRA, NA_NEIGHBORHOOD,

NA_NONAMBIGUOUSMATCH, NA_NONE, NA_NP_SEC_ADDR, NA_NP_UNIT_DESIG,

NA_NP_UNIT_NBR, NA_OTHERPOSTNAME, NA_PARSESTATUS, NA_PARSESTATUSDESC,

NA_PARSINGCOUNTRY, NA_PASSTHRU, NA_PERSON, NA_PERSONCOUNT, NA_PHONE,

NA_POSTALCODE, NA_POSTALCODECORRECTED, NA_POSTALCODEFORMATTED,

NA_POSTDIRECTIONAL, NA_POSTNAME, NA_PREDIRECTIONAL, NA_PRENAME,

NA_PRIMARYADDRESS, NA_PRIM_NAME_2, NA_RELATIONSHIP, NA_ROUTENAME,

NA_ROUTENUMBER, NA_SECONDARYADDRESS, NA_SSN, NA_STATE,

NA_STREETCOMPCORRECTED, NA_STREETCOMPMATCH, NA_STREETCORRECTED,

NA_STREETNAME, NA_STREETNAMEMATCH, NA_STREETNUMBER, NA_STREETNUMBERMATCH,

NA_STREETTYPE, NA_STREETWARNING, NA_TITLE, NA_UNITDESIGNATOR,

NA_UNITNUMBER, NA_URBANIZATIONNAME, NA_URBAN_IND, NA_ZIP4, NA_ZIP5

Default: NA_NONE

Assigns a Name and Address output component to the selected output

attribute.

Name: PARAMETER_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The position of the argument in the table function signature corresponding

to this parmater

Name: PIVOT_EXPRESSION

Type: STRING

Valid Values: N/A

Default: ''

A comma-separated expression that gives the input attribute to be used for

each output row in the pivot group.

Name: PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

The data precision value of the attribute

Name: REFERENCED_LEVEL_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The bound name of the parent level attribute associated to this attribute.

Name: REFERENCED_LEVEL_NAME

Type: STRING

Valid Values: N/A

Default: ''

The bound name of the parent level group associated to this attribute.

Name: REFERENCING_TYPE

Type: STRING

Valid Values: LOOKUP_KEY, NONE, REFERENCE_KEY_ALL, REFERENCE_KEY_ONLY

Default: NONE

The type of reference to indicate how this attribute participates in

resolving existing level relationships and level implementations. If Lookup

Reference Attribute is specified, this attribute will be used as lookup

attribute upon parent level to resolve level implementations during

loading. If Level Relationship Attribute (Snowflake) is specified, this

attribute will be directly used as level relationship attribute and no

lookup upon parent level would be performed during loading. If Level

Relationship Attribute (Star) is specified, this attribute will be directly

used as level relationship attribute, as well as lookup attribute upon

parent level to resolve level implementations during loading. If none is

specified, this attribute does not participate in any level relationship.

Name: SCALE

Type: NUMBER

Valid Values: N/A

Default: 0

The data scale value of the attribute

Name: SKIP_LEVEL_DIMENSION

Type: STRING

Valid Values: NO, YES

Default: NO

Indicates whether this level has a skip level parent.

Name: TYPE_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name of the field of the PLS Record or attribute of the Object Type or

column of the ROWTYPE that corresponds to this attribute. This property is

not applicable if the return type is TABLE of SCALAR.

Name: UNPIVOT_EXPRESSION

Type: STRING

Valid Values: N/A

Default: NULL

An expression that gives the input attribute to be used as the output of

this attribute.

Name: UPDATE_OPERATION

Type: STRING(3)

Valid Values: +=, -=, =, =-, =||, ||=

Default: =

The computation to be performed on this attribute between the incoming data

and the existing data on the target during the update load operation.

Name: VALUETYPE

Type: STRING

Valid Values: NEW, NEW_OLD, OLD

Default: NEW_OLD

Specifies the value type of this attribute

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

getPlSqlRecordAttributesClause

Gets the names of all the attributes of the PLSQL Record Type

propertyNameList

The list of properties.

See Also

OMBRETRIEVE, OMBALTER PLSQL_RECORD_TYPE, OMBCREATE PLSQL_RECORD_TYPE, OMBDROP PLSQL_RECORD_TYPE

OMBRETRIEVE PLSQL_REF_CURSOR_TYPE

Purpose

Retrieve details of the Ref-cursor Type.

Prerequisites

Should be in the context of a Package.

Syntax

retrieveRefCursorTypeCommand =  OMBRETRIEVE PLSQL_REF_CURSOR_TYPE 
     "QUOTED_STRING" "retrieveRefCursorTypeClause"
retrieveRefCursorTypeClause =  GET "getPropertiesClause"
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveRefCursorTypeCommand

Retrieves the details of the Ref-cursor Type with the given name.

retrieveRefCursorTypeClause

Retrieves the details of the Ref-cursor Type with the given name.

getPropertiesClause

This clause retrieves all the properties.

Basic properties for PLSQL_REF_CURSOR_TYPE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Ref-Cursor Type

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Ref-Cursor Type

Name: RETURN_TYPE

Type: STRING(20)

Valid Values: N/A

Default: ''

Return type of the Ref-Cursor Type. This should be a PLSQL Record Type.

Properties for PLSQL_REF_CURSOR_TYPE:

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Properties for ATTRIBUTE:

Name: ADDRESS_TYPE

Type: STRING

Valid Values: NA_ADDRTYPE_DUAL, NA_ADDRTYPE_NORMAL

Default: NA_ADDRTYPE_NORMAL

You can designate an address type as Normal or Dual. For example, a dual

address occurs when a record contains both a street address and a P.O. Box;

this is common with business data. A normal address contains only one type

of address.

Name: ATTRIBUTE_ROLE

Type: STRING

Valid Values: END_DATE, LOOKUP_ACTIVE_DATE, MEASURE, NATURAL_KEY, NONE,

PARENT_NATURAL_KEY, PARENT_REF_KEY, PARENT_SURROGATE_KEY, PREV_VALUE,

START_DATE, SURROGATE_KEY, TRIGGER

Default: NONE

The type of role to indicate how this attribute will be used in history

logging. History As Previous Value indicates that this attribute will be

used to keep previous value. Surrogate Identifier indicates that this

attribute will be used to keep the surrogate identifier. Natural Identifier

indicates that this attribute will be used to keep the natural identifier.

Effective Time indicates that this attribute will be used as the effective

time of the version. Expiration Time indicates that this attribute will be

used as the expiration time of the version. Trigger indicates that this

attribute will be used to trigger history logging. If none is specified,

this attribute will be used to keep current value.

Name: BINDING_COLUMN_NAME

Type: STRING

Valid Values: N/A

Default: ''

The binding column name for this attribute

Name: DATA_TYPE

Type: STRING

Valid Values: N/A

Default: ''

The data type of the attribute

Name: DEFAULT_VALUE

Type: STRING

Valid Values: N/A

Default: ''

The Default Value for the function input parameter

Name: DIMENSION_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The dimension attribute referenced to by this level attribute.

Name: EXPRESSION

Type: STRING

Valid Values: N/A

Default: ''

The output expression for the attribute

Name: FIELD_DATA_TYPE

Type: STRING

Valid Values: BYTEINT, CHAR, DATE, DECIMAL, DECIMAL EXTERNAL, DOUBLE,

FLOAT, FLOAT EXTERNAL, GRAPHIC, GRAPHIC EXTERNAL, INTEGER, INTEGER

EXTERNAL, INTEGER UNSIGNED, INTERVAL DAY TO SECOND, INTERVAL YEAR TO MONTH,

LONG VARRAW, RAW, SMALLINT, SMALLINT UNSIGNED, TIMESTAMP, TIMESTAMP WITH

LOCAL TIME ZONE, TIMESTAMP WITH TIME ZONE, VARCHAR, VARCHARC, VARGRAPHIC,

VARRAW, VARRAWC, ZONED, ZONED EXTERNAL

Default: CHAR

SQL Data Type of the field in the file to which this operator is bound.

Name: FIELD_DATA_TYPE_LENGTH

Type: NUMBER

Valid Values: N/A

Default: 0

Field Length of the field in the file to which this operator is bound.

Name: FIELD_DATA_TYPE_PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

Field Precision of the field in the file to which this operator is bound.

Name: FIELD_DATA_TYPE_SCALE

Type: NUMBER

Valid Values: N/A

Default: 0

Field Scale of the field in the file to which this operator is bound.

Name: FIELD_DEFAULTIF_VALUE

Type: STRING

Valid Values: N/A

Default: ''

The expression that indicates the value of the field is blank or zero,

based on the datatype.

Name: FIELD_END_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The ending position of the field in the file

Name: FIELD_MASK

Type: STRING

Valid Values: N/A

Default: ''

The mask for the field

Name: FIELD_NULLIF_VALUE

Type: STRING

Valid Values: N/A

Default: ''

The expression that indicates the value of the field is null

Name: FIELD_START_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The starting position of the field in the file

Name: FRACTIONAL_SECONDS_PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

The data fractional seconds precision value of the attribute

Name: FUNCTION_RETURN

Type: BOOLEAN

Valid Values: true, false

Default: false

Specifies whether this output is the return value of this function

Name: GROUP_KEY

Type: BOOLEAN

Valid Values: true, false

Default: false

A boolean value to indicate whether this input attribute is a part of the

unpivot group key.

Name: INPUT_ROLE

Type: STRING

Valid Values: NA_ADDRESS, NA_ADDRESS2, NA_CITY, NA_COUNTRYCODE,

NA_COUNTRYNAME, NA_FIRMNAME, NA_FIRSTNAME, NA_FIRSTPARTNAME, NA_LASTLINE,

NA_LASTLINE_2, NA_LASTNAME, NA_LASTPARTNAME, NA_LINE1, NA_LINE10, NA_LINE2,

NA_LINE3, NA_LINE4, NA_LINE5, NA_LINE6, NA_LINE7, NA_LINE8, NA_LINE9,

NA_LOCALITYNAME, NA_LOCALITY_2, NA_LOCALITY_3, NA_LOCALITY_4,

NA_MIDDLENAME, NA_MIDDLENAME2, NA_MIDDLENAME3, NA_NEIGHBORHOOD, NA_NONE,

NA_PASSTHRU, NA_PERSON, NA_PERSON2, NA_PERSON3, NA_POSTALCODE, NA_POSTNAME,

NA_PRENAME, NA_PRIMARYADDRESS, NA_SECONDARYADDRESS, NA_STATE

Default: NA_NONE

Assigns a name-address input role to the selected input attribute

Name: INSTANCE

Type: STRING

Valid Values: NA_INSTANCE_FIFTH, NA_INSTANCE_FIRST, NA_INSTANCE_FOURTH,

NA_INSTANCE_SECOND, NA_INSTANCE_SIXTH, NA_INSTANCE_THIRD

Default: NA_INSTANCE_FIRST

The instance option is used when an address contains multiple names, you

can specify which name in the group should be used. In addition, you can

use this option to assign an address type to a miscellaneous address

component.

Name: IS_CAST_TARGET

Type: BOOLEAN

Valid Values: true, false

Default: false

Description not available.

Name: IS_OPTIONAL

Type: BOOLEAN

Valid Values: true, false

Default: false

If true, the input is not required to be connected

Name: IS_PREDEFINED_CONSTANT

Type: BOOLEAN

Valid Values: true, false

Default: false

Description not available.

Name: LENGTH

Type: NUMBER

Valid Values: N/A

Default: 0

The data length value of the attribute

Name: LEVEL_ATTRIBUTE_COLNAME_NAME

Type: STRING

Valid Values: N/A

Default: ''

Column name in the AW staging table and source view for this attribute.

Name: LEVEL_ATTRIBUTE_LEVEL_INDICATOR_COLNAME

Type: STRING

Valid Values: N/A

Default: ''

Level indicating columns name. This level will contain the name of the name

of the level this parent reference belongs to. This is relavant only for

skip level hierarchies.

Name: LEVEL_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name of the Level Attribute.

Name: LEVEL_RELATIONSHIP_NAME

Type: STRING

Valid Values: N/A

Default: ''

The level relationship name associated to this attribute.

Name: LOAD_COLUMN_WHEN_INSERTING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will particiate in the

insert load operation.

Name: LOAD_COLUMN_WHEN_UPDATING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will particiate in the

update load operation.

Name: LOOKUP_ATTRIBUTE_ROLE

Type: STRING

Valid Values: DIMENSION_KEY, END_DATE, NATURAL_KEY, NONE, PREV_VALUE,

START_DATE, SURROGATE_KEY, TRIGGER

Default: NONE

The type of role to indicate how this attribute will be used in history

logging. History As Previous Value indicates that this attribute will be

used to keep previous value. Surrogate Identifier indicates that this

attribute will be used to keep the surrogate identifier. Natural Identifier

indicates that this attribute will be used to keep the natural identifier.

Effective Time indicates that this attribute will be used as the effective

time of the version. Expiration Time indicates that this attribute will be

used as the expiration time of the version. Trigger indicates that this

attribute will be used to trigger history logging. If none is specified,

this attribute will be used to keep current value.

Name: MATCHING_ROW

Type: NUMBER

Valid Values: 1 - 1000

Default: 1

An positive integer to indicate from which row within the unpivot group

this output attribute obtains its data.

Name: MATCH_COLUMN_WHEN_DELETING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will be used to

construct the matching criteria between the incoming data and the existing

data on the target during the delete load operation.

Name: MATCH_COLUMN_WHEN_UPDATING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will be used to

construct the matching criteria between the incoming data and the existing

data on the target during the update load operation.

Name: MERGE_ATTR

Type: STRING

Valid Values: N/A

Default: ''

Related merge attribute

Name: OUTPUT_COMPONENT

Type: STRING

Valid Values: NA_ADDRESS, NA_ADDRESS2, NA_ADDRESSCORRECTED, NA_ADDRESSTYPE,

NA_AUTO_ZONE_IND, NA_BOXNAME, NA_BOXNUMBER, NA_BUILDINGNAME, NA_CART,

NA_CBSA_CODE, NA_CBSA_DESC, NA_CENSUSID, NA_CHECKDIGIT, NA_CITY,

NA_CITYCORRECTED, NA_CITYMATCH, NA_CITYWARNING, NA_CITY_ABBREV,

NA_CITY_ABBREV_2, NA_CITY_ALTERNATE, NA_COMPLEX, NA_COUNTRYCODE,

NA_COUNTRYCODE3, NA_COUNTRYNAME, NA_COUNTYNAME, NA_DELIVERYBEATCODE,

NA_DELIVERYOFFICECODE, NA_DELIVERYPOINT, NA_EMAIL, NA_EXTRA_1, NA_EXTRA_10,

NA_EXTRA_11, NA_EXTRA_12, NA_EXTRA_13, NA_EXTRA_14, NA_EXTRA_15,

NA_EXTRA_16, NA_EXTRA_17, NA_EXTRA_18, NA_EXTRA_19, NA_EXTRA_2,

NA_EXTRA_20, NA_EXTRA_3, NA_EXTRA_4, NA_EXTRA_5, NA_EXTRA_6, NA_EXTRA_7,

NA_EXTRA_8, NA_EXTRA_9, NA_FIPS, NA_FIPSCOUNTY, NA_FIPS_PLACE_CODE,

NA_FIRMCOUNT, NA_FIRMNAME, NA_FIRM_LOC, NA_FIRSTNAME, NA_FIRSTNAMESTD,

NA_GENDER, NA_GEO_MATCH_PREC, NA_INSTALLATIONNAME, NA_INSTALLATIONTYPE,

NA_ISADDRESSVERIFIABLE, NA_ISFOUND, NA_ISGOODADDRESS, NA_ISGOODGROUP,

NA_ISGOODNAME, NA_ISPARSED, NA_LACS, NA_LASTLINE, NA_LASTLINE_2,

NA_LASTNAME, NA_LATITUDE, NA_LOCALITYCODE, NA_LOCALITYNAME, NA_LOCALITY_2,

NA_LOCALITY_3, NA_LOCALITY_4, NA_LONGITUDE, NA_LOT, NA_LOT_ORDER, NA_MCD,

NA_MIDDLENAME, NA_MIDDLENAME2, NA_MIDDLENAME2STD, NA_MIDDLENAME3,

NA_MIDDLENAME3STD, NA_MIDDLENAMESTD, NA_MISCADDRESS, NA_MSA,

NA_NAMEDESIGNATOR, NA_NAMEWARNING, NA_NAME_FIRM_EXTRA, NA_NEIGHBORHOOD,

NA_NONAMBIGUOUSMATCH, NA_NONE, NA_NP_SEC_ADDR, NA_NP_UNIT_DESIG,

NA_NP_UNIT_NBR, NA_OTHERPOSTNAME, NA_PARSESTATUS, NA_PARSESTATUSDESC,

NA_PARSINGCOUNTRY, NA_PASSTHRU, NA_PERSON, NA_PERSONCOUNT, NA_PHONE,

NA_POSTALCODE, NA_POSTALCODECORRECTED, NA_POSTALCODEFORMATTED,

NA_POSTDIRECTIONAL, NA_POSTNAME, NA_PREDIRECTIONAL, NA_PRENAME,

NA_PRIMARYADDRESS, NA_PRIM_NAME_2, NA_RELATIONSHIP, NA_ROUTENAME,

NA_ROUTENUMBER, NA_SECONDARYADDRESS, NA_SSN, NA_STATE,

NA_STREETCOMPCORRECTED, NA_STREETCOMPMATCH, NA_STREETCORRECTED,

NA_STREETNAME, NA_STREETNAMEMATCH, NA_STREETNUMBER, NA_STREETNUMBERMATCH,

NA_STREETTYPE, NA_STREETWARNING, NA_TITLE, NA_UNITDESIGNATOR,

NA_UNITNUMBER, NA_URBANIZATIONNAME, NA_URBAN_IND, NA_ZIP4, NA_ZIP5

Default: NA_NONE

Assigns a Name and Address output component to the selected output

attribute.

Name: PARAMETER_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The position of the argument in the table function signature corresponding

to this parmater

Name: PIVOT_EXPRESSION

Type: STRING

Valid Values: N/A

Default: ''

A comma-separated expression that gives the input attribute to be used for

each output row in the pivot group.

Name: PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

The data precision value of the attribute

Name: REFERENCED_LEVEL_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The bound name of the parent level attribute associated to this attribute.

Name: REFERENCED_LEVEL_NAME

Type: STRING

Valid Values: N/A

Default: ''

The bound name of the parent level group associated to this attribute.

Name: REFERENCING_TYPE

Type: STRING

Valid Values: LOOKUP_KEY, NONE, REFERENCE_KEY_ALL, REFERENCE_KEY_ONLY

Default: NONE

The type of reference to indicate how this attribute participates in

resolving existing level relationships and level implementations. If Lookup

Reference Attribute is specified, this attribute will be used as lookup

attribute upon parent level to resolve level implementations during

loading. If Level Relationship Attribute (Snowflake) is specified, this

attribute will be directly used as level relationship attribute and no

lookup upon parent level would be performed during loading. If Level

Relationship Attribute (Star) is specified, this attribute will be directly

used as level relationship attribute, as well as lookup attribute upon

parent level to resolve level implementations during loading. If none is

specified, this attribute does not participate in any level relationship.

Name: SCALE

Type: NUMBER

Valid Values: N/A

Default: 0

The data scale value of the attribute

Name: SKIP_LEVEL_DIMENSION

Type: STRING

Valid Values: NO, YES

Default: NO

Indicates whether this level has a skip level parent.

Name: TYPE_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name of the field of the PLS Record or attribute of the Object Type or

column of the ROWTYPE that corresponds to this attribute. This property is

not applicable if the return type is TABLE of SCALAR.

Name: UNPIVOT_EXPRESSION

Type: STRING

Valid Values: N/A

Default: NULL

An expression that gives the input attribute to be used as the output of

this attribute.

Name: UPDATE_OPERATION

Type: STRING(3)

Valid Values: +=, -=, =, =-, =||, ||=

Default: =

The computation to be performed on this attribute between the incoming data

and the existing data on the target during the update load operation.

Name: VALUETYPE

Type: STRING

Valid Values: NEW, NEW_OLD, OLD

Default: NEW_OLD

Specifies the value type of this attribute

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

propertyNameList

The list of properties.

See Also

OMBRETRIEVE, OMBALTER PLSQL_REF_CURSOR_TYPE, OMBCREATE PLSQL_REF_CURSOR_TYPE, OMBDROP PLSQL_REF_CURSOR_TYPE

OMBRETRIEVE PLSQL_TABLE_TYPE

Purpose

Retrieve details of the Table Type.

Prerequisites

Should be in the context of a Package.

Syntax

retrievePlSqlTableTypeCommand =  OMBRETRIEVE PLSQL_TABLE_TYPE 
     "QUOTED_STRING" "retrievePlSqlTableTypeClause"
retrievePlSqlTableTypeClause =  GET "getPropertiesClause"
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrievePlSqlTableTypeCommand

Retrieves the details of the Table Type with the given name.

retrievePlSqlTableTypeClause

Retrieves the properties of the table type with the given name.

getPropertiesClause

This clause retrieves all the properties.

Basic properties for PLSQL_TABLE_TYPE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Table Type

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Table Type

Name: RETURN_TYPE

Type: STRING(20)

Valid Values: NUMBER, VARCHAR2, VARCHAR, DATE, FLOAT

Default: ''

Return type of the Table Type. This can be a scalar type or a PLSQL Record

Type.

Properties for PLSQL_TABLE_TYPE:

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Properties for ATTRIBUTE:

Name: ADDRESS_TYPE

Type: STRING

Valid Values: NA_ADDRTYPE_DUAL, NA_ADDRTYPE_NORMAL

Default: NA_ADDRTYPE_NORMAL

You can designate an address type as Normal or Dual. For example, a dual

address occurs when a record contains both a street address and a P.O. Box;

this is common with business data. A normal address contains only one type

of address.

Name: ATTRIBUTE_ROLE

Type: STRING

Valid Values: END_DATE, LOOKUP_ACTIVE_DATE, MEASURE, NATURAL_KEY, NONE,

PARENT_NATURAL_KEY, PARENT_REF_KEY, PARENT_SURROGATE_KEY, PREV_VALUE,

START_DATE, SURROGATE_KEY, TRIGGER

Default: NONE

The type of role to indicate how this attribute will be used in history

logging. History As Previous Value indicates that this attribute will be

used to keep previous value. Surrogate Identifier indicates that this

attribute will be used to keep the surrogate identifier. Natural Identifier

indicates that this attribute will be used to keep the natural identifier.

Effective Time indicates that this attribute will be used as the effective

time of the version. Expiration Time indicates that this attribute will be

used as the expiration time of the version. Trigger indicates that this

attribute will be used to trigger history logging. If none is specified,

this attribute will be used to keep current value.

Name: BINDING_COLUMN_NAME

Type: STRING

Valid Values: N/A

Default: ''

The binding column name for this attribute

Name: DATA_TYPE

Type: STRING

Valid Values: N/A

Default: ''

The data type of the attribute

Name: DEFAULT_VALUE

Type: STRING

Valid Values: N/A

Default: ''

The Default Value for the function input parameter

Name: DIMENSION_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The dimension attribute referenced to by this level attribute.

Name: EXPRESSION

Type: STRING

Valid Values: N/A

Default: ''

The output expression for the attribute

Name: FIELD_DATA_TYPE

Type: STRING

Valid Values: BYTEINT, CHAR, DATE, DECIMAL, DECIMAL EXTERNAL, DOUBLE,

FLOAT, FLOAT EXTERNAL, GRAPHIC, GRAPHIC EXTERNAL, INTEGER, INTEGER

EXTERNAL, INTEGER UNSIGNED, INTERVAL DAY TO SECOND, INTERVAL YEAR TO MONTH,

LONG VARRAW, RAW, SMALLINT, SMALLINT UNSIGNED, TIMESTAMP, TIMESTAMP WITH

LOCAL TIME ZONE, TIMESTAMP WITH TIME ZONE, VARCHAR, VARCHARC, VARGRAPHIC,

VARRAW, VARRAWC, ZONED, ZONED EXTERNAL

Default: CHAR

SQL Data Type of the field in the file to which this operator is bound.

Name: FIELD_DATA_TYPE_LENGTH

Type: NUMBER

Valid Values: N/A

Default: 0

Field Length of the field in the file to which this operator is bound.

Name: FIELD_DATA_TYPE_PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

Field Precision of the field in the file to which this operator is bound.

Name: FIELD_DATA_TYPE_SCALE

Type: NUMBER

Valid Values: N/A

Default: 0

Field Scale of the field in the file to which this operator is bound.

Name: FIELD_DEFAULTIF_VALUE

Type: STRING

Valid Values: N/A

Default: ''

The expression that indicates the value of the field is blank or zero,

based on the datatype.

Name: FIELD_END_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The ending position of the field in the file

Name: FIELD_MASK

Type: STRING

Valid Values: N/A

Default: ''

The mask for the field

Name: FIELD_NULLIF_VALUE

Type: STRING

Valid Values: N/A

Default: ''

The expression that indicates the value of the field is null

Name: FIELD_START_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The starting position of the field in the file

Name: FRACTIONAL_SECONDS_PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

The data fractional seconds precision value of the attribute

Name: FUNCTION_RETURN

Type: BOOLEAN

Valid Values: true, false

Default: false

Specifies whether this output is the return value of this function

Name: GROUP_KEY

Type: BOOLEAN

Valid Values: true, false

Default: false

A boolean value to indicate whether this input attribute is a part of the

unpivot group key.

Name: INPUT_ROLE

Type: STRING

Valid Values: NA_ADDRESS, NA_ADDRESS2, NA_CITY, NA_COUNTRYCODE,

NA_COUNTRYNAME, NA_FIRMNAME, NA_FIRSTNAME, NA_FIRSTPARTNAME, NA_LASTLINE,

NA_LASTLINE_2, NA_LASTNAME, NA_LASTPARTNAME, NA_LINE1, NA_LINE10, NA_LINE2,

NA_LINE3, NA_LINE4, NA_LINE5, NA_LINE6, NA_LINE7, NA_LINE8, NA_LINE9,

NA_LOCALITYNAME, NA_LOCALITY_2, NA_LOCALITY_3, NA_LOCALITY_4,

NA_MIDDLENAME, NA_MIDDLENAME2, NA_MIDDLENAME3, NA_NEIGHBORHOOD, NA_NONE,

NA_PASSTHRU, NA_PERSON, NA_PERSON2, NA_PERSON3, NA_POSTALCODE, NA_POSTNAME,

NA_PRENAME, NA_PRIMARYADDRESS, NA_SECONDARYADDRESS, NA_STATE

Default: NA_NONE

Assigns a name-address input role to the selected input attribute

Name: INSTANCE

Type: STRING

Valid Values: NA_INSTANCE_FIFTH, NA_INSTANCE_FIRST, NA_INSTANCE_FOURTH,

NA_INSTANCE_SECOND, NA_INSTANCE_SIXTH, NA_INSTANCE_THIRD

Default: NA_INSTANCE_FIRST

The instance option is used when an address contains multiple names, you

can specify which name in the group should be used. In addition, you can

use this option to assign an address type to a miscellaneous address

component.

Name: IS_CAST_TARGET

Type: BOOLEAN

Valid Values: true, false

Default: false

Description not available.

Name: IS_OPTIONAL

Type: BOOLEAN

Valid Values: true, false

Default: false

If true, the input is not required to be connected

Name: IS_PREDEFINED_CONSTANT

Type: BOOLEAN

Valid Values: true, false

Default: false

Description not available.

Name: LENGTH

Type: NUMBER

Valid Values: N/A

Default: 0

The data length value of the attribute

Name: LEVEL_ATTRIBUTE_COLNAME_NAME

Type: STRING

Valid Values: N/A

Default: ''

Column name in the AW staging table and source view for this attribute.

Name: LEVEL_ATTRIBUTE_LEVEL_INDICATOR_COLNAME

Type: STRING

Valid Values: N/A

Default: ''

Level indicating columns name. This level will contain the name of the name

of the level this parent reference belongs to. This is relavant only for

skip level hierarchies.

Name: LEVEL_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name of the Level Attribute.

Name: LEVEL_RELATIONSHIP_NAME

Type: STRING

Valid Values: N/A

Default: ''

The level relationship name associated to this attribute.

Name: LOAD_COLUMN_WHEN_INSERTING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will particiate in the

insert load operation.

Name: LOAD_COLUMN_WHEN_UPDATING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will particiate in the

update load operation.

Name: LOOKUP_ATTRIBUTE_ROLE

Type: STRING

Valid Values: DIMENSION_KEY, END_DATE, NATURAL_KEY, NONE, PREV_VALUE,

START_DATE, SURROGATE_KEY, TRIGGER

Default: NONE

The type of role to indicate how this attribute will be used in history

logging. History As Previous Value indicates that this attribute will be

used to keep previous value. Surrogate Identifier indicates that this

attribute will be used to keep the surrogate identifier. Natural Identifier

indicates that this attribute will be used to keep the natural identifier.

Effective Time indicates that this attribute will be used as the effective

time of the version. Expiration Time indicates that this attribute will be

used as the expiration time of the version. Trigger indicates that this

attribute will be used to trigger history logging. If none is specified,

this attribute will be used to keep current value.

Name: MATCHING_ROW

Type: NUMBER

Valid Values: 1 - 1000

Default: 1

An positive integer to indicate from which row within the unpivot group

this output attribute obtains its data.

Name: MATCH_COLUMN_WHEN_DELETING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will be used to

construct the matching criteria between the incoming data and the existing

data on the target during the delete load operation.

Name: MATCH_COLUMN_WHEN_UPDATING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will be used to

construct the matching criteria between the incoming data and the existing

data on the target during the update load operation.

Name: MERGE_ATTR

Type: STRING

Valid Values: N/A

Default: ''

Related merge attribute

Name: OUTPUT_COMPONENT

Type: STRING

Valid Values: NA_ADDRESS, NA_ADDRESS2, NA_ADDRESSCORRECTED, NA_ADDRESSTYPE,

NA_AUTO_ZONE_IND, NA_BOXNAME, NA_BOXNUMBER, NA_BUILDINGNAME, NA_CART,

NA_CBSA_CODE, NA_CBSA_DESC, NA_CENSUSID, NA_CHECKDIGIT, NA_CITY,

NA_CITYCORRECTED, NA_CITYMATCH, NA_CITYWARNING, NA_CITY_ABBREV,

NA_CITY_ABBREV_2, NA_CITY_ALTERNATE, NA_COMPLEX, NA_COUNTRYCODE,

NA_COUNTRYCODE3, NA_COUNTRYNAME, NA_COUNTYNAME, NA_DELIVERYBEATCODE,

NA_DELIVERYOFFICECODE, NA_DELIVERYPOINT, NA_EMAIL, NA_EXTRA_1, NA_EXTRA_10,

NA_EXTRA_11, NA_EXTRA_12, NA_EXTRA_13, NA_EXTRA_14, NA_EXTRA_15,

NA_EXTRA_16, NA_EXTRA_17, NA_EXTRA_18, NA_EXTRA_19, NA_EXTRA_2,

NA_EXTRA_20, NA_EXTRA_3, NA_EXTRA_4, NA_EXTRA_5, NA_EXTRA_6, NA_EXTRA_7,

NA_EXTRA_8, NA_EXTRA_9, NA_FIPS, NA_FIPSCOUNTY, NA_FIPS_PLACE_CODE,

NA_FIRMCOUNT, NA_FIRMNAME, NA_FIRM_LOC, NA_FIRSTNAME, NA_FIRSTNAMESTD,

NA_GENDER, NA_GEO_MATCH_PREC, NA_INSTALLATIONNAME, NA_INSTALLATIONTYPE,

NA_ISADDRESSVERIFIABLE, NA_ISFOUND, NA_ISGOODADDRESS, NA_ISGOODGROUP,

NA_ISGOODNAME, NA_ISPARSED, NA_LACS, NA_LASTLINE, NA_LASTLINE_2,

NA_LASTNAME, NA_LATITUDE, NA_LOCALITYCODE, NA_LOCALITYNAME, NA_LOCALITY_2,

NA_LOCALITY_3, NA_LOCALITY_4, NA_LONGITUDE, NA_LOT, NA_LOT_ORDER, NA_MCD,

NA_MIDDLENAME, NA_MIDDLENAME2, NA_MIDDLENAME2STD, NA_MIDDLENAME3,

NA_MIDDLENAME3STD, NA_MIDDLENAMESTD, NA_MISCADDRESS, NA_MSA,

NA_NAMEDESIGNATOR, NA_NAMEWARNING, NA_NAME_FIRM_EXTRA, NA_NEIGHBORHOOD,

NA_NONAMBIGUOUSMATCH, NA_NONE, NA_NP_SEC_ADDR, NA_NP_UNIT_DESIG,

NA_NP_UNIT_NBR, NA_OTHERPOSTNAME, NA_PARSESTATUS, NA_PARSESTATUSDESC,

NA_PARSINGCOUNTRY, NA_PASSTHRU, NA_PERSON, NA_PERSONCOUNT, NA_PHONE,

NA_POSTALCODE, NA_POSTALCODECORRECTED, NA_POSTALCODEFORMATTED,

NA_POSTDIRECTIONAL, NA_POSTNAME, NA_PREDIRECTIONAL, NA_PRENAME,

NA_PRIMARYADDRESS, NA_PRIM_NAME_2, NA_RELATIONSHIP, NA_ROUTENAME,

NA_ROUTENUMBER, NA_SECONDARYADDRESS, NA_SSN, NA_STATE,

NA_STREETCOMPCORRECTED, NA_STREETCOMPMATCH, NA_STREETCORRECTED,

NA_STREETNAME, NA_STREETNAMEMATCH, NA_STREETNUMBER, NA_STREETNUMBERMATCH,

NA_STREETTYPE, NA_STREETWARNING, NA_TITLE, NA_UNITDESIGNATOR,

NA_UNITNUMBER, NA_URBANIZATIONNAME, NA_URBAN_IND, NA_ZIP4, NA_ZIP5

Default: NA_NONE

Assigns a Name and Address output component to the selected output

attribute.

Name: PARAMETER_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The position of the argument in the table function signature corresponding

to this parmater

Name: PIVOT_EXPRESSION

Type: STRING

Valid Values: N/A

Default: ''

A comma-separated expression that gives the input attribute to be used for

each output row in the pivot group.

Name: PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

The data precision value of the attribute

Name: REFERENCED_LEVEL_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The bound name of the parent level attribute associated to this attribute.

Name: REFERENCED_LEVEL_NAME

Type: STRING

Valid Values: N/A

Default: ''

The bound name of the parent level group associated to this attribute.

Name: REFERENCING_TYPE

Type: STRING

Valid Values: LOOKUP_KEY, NONE, REFERENCE_KEY_ALL, REFERENCE_KEY_ONLY

Default: NONE

The type of reference to indicate how this attribute participates in

resolving existing level relationships and level implementations. If Lookup

Reference Attribute is specified, this attribute will be used as lookup

attribute upon parent level to resolve level implementations during

loading. If Level Relationship Attribute (Snowflake) is specified, this

attribute will be directly used as level relationship attribute and no

lookup upon parent level would be performed during loading. If Level

Relationship Attribute (Star) is specified, this attribute will be directly

used as level relationship attribute, as well as lookup attribute upon

parent level to resolve level implementations during loading. If none is

specified, this attribute does not participate in any level relationship.

Name: SCALE

Type: NUMBER

Valid Values: N/A

Default: 0

The data scale value of the attribute

Name: SKIP_LEVEL_DIMENSION

Type: STRING

Valid Values: NO, YES

Default: NO

Indicates whether this level has a skip level parent.

Name: TYPE_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name of the field of the PLS Record or attribute of the Object Type or

column of the ROWTYPE that corresponds to this attribute. This property is

not applicable if the return type is TABLE of SCALAR.

Name: UNPIVOT_EXPRESSION

Type: STRING

Valid Values: N/A

Default: NULL

An expression that gives the input attribute to be used as the output of

this attribute.

Name: UPDATE_OPERATION

Type: STRING(3)

Valid Values: +=, -=, =, =-, =||, ||=

Default: =

The computation to be performed on this attribute between the incoming data

and the existing data on the target during the update load operation.

Name: VALUETYPE

Type: STRING

Valid Values: NEW, NEW_OLD, OLD

Default: NEW_OLD

Specifies the value type of this attribute

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

propertyNameList

The list of properties.

See Also

OMBRETRIEVE, OMBALTER PLSQL_TABLE_TYPE, OMBCREATE PLSQL_TABLE_TYPE, OMBDROP PLSQL_TABLE_TYPE

OMBRETRIEVE PLUGGABLE_MAPPING_FOLDER

Purpose

Retrieve details of pluggable map folder such as its business name and description.

Prerequisites

The current context of scripting must be a project.

Syntax

retrievePluggableMappingFolderCommand =  OMBRETRIEVE 
     PLUGGABLE_MAPPING_FOLDER "pluggableMapFolderName" GET ( PROPERTIES 
     "propertyKeyList" | "getReferenceIconSetClause" )
pluggableMapFolderName =  "QUOTED_STRING"
propertyKeyList =  "(" "propertyKey" { "," "propertyKey" } ")"
getReferenceIconSetClause =  ( REF | REFERENCE ) ICONSET
propertyKey =  "UNQUOTED_STRING"

Keywords And Parameters

retrievePluggableMappingFolderCommand

Retrieve the detail of a pluggable mapping such as its business name and

description.

pluggableMapFolderName

Name of the pluggable map folder.

propertyKeyList

The list of property keys.

propertyKey

A property key for an object.

Basic properties for MAPPING:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the mapping

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

See Also

OMBRETRIEVE

OMBRETRIEVE PLUGGABLE_MAPPING

Purpose

Retrieve details of pluggable mapping such as the number of operators and their connections.

Prerequisites

The current context of scripting must be a project or pluggable map folder.

Syntax

retrievePluggableMappingCommand =  OMBRETRIEVE PLUGGABLE_MAPPING 
     "pluggableMapName" ( "retrieveOperatorOwnerDetailClause" | 
     "testConnectionClause" )
pluggableMapName =  "QUOTED_STRING"
retrieveOperatorOwnerDetailClause =  GET ( PROPERTIES "propertyKeyList" | 
     "getReferenceIconSetClause" | [ "operatorType" ] OPERATORS [ 
     "connectionConditionClause" ] | "childType" ) | "getChildDetailClause"
      | "operatorLocator" "getOperatorDetailClause"
testConnectionClause =  HAS CONNECTION FROM "mappableBottomUpLocator" TO 
     "mappableBottomUpLocator"
propertyKeyList =  "(" "propertyKey" { "," "propertyKey" } ")"
getReferenceIconSetClause =  ( REF | REFERENCE ) ICONSET
operatorType =  PLUGGABLE_MAPPING | "UNQUOTED_STRING"
connectionConditionClause =  CONNECTED ( FROM "mappableBottomUpLocator" | 
     TO "mappableBottomUpLocator" )
childType =  "UNQUOTED_STRING"
getChildDetailClause =  ( "childType" "childName" )+ GET ( PROPERTIES 
     "propertyKeyList" | "childType" )
operatorLocator =  [ "pluggableMapLocator" ] OPERATOR "operatorName"
getOperatorDetailClause =  GET ( PROPERTIES "propertyKeyList" | [ 
     "groupDirection" ] GROUPS [ "connectionConditionClause" ] | 
     BOUND_OBJECT | "childType" ) | "getChildDetailClause" | "groupLocator"
      "getGroupDetailClause"
mappableBottomUpLocator =  "operatorBottomUpLocator" | 
     "groupBottomUpLocator" | "attributeBottomUpLocator"
propertyKey =  "UNQUOTED_STRING"
childName =  "QUOTED_STRING"
pluggableMapLocator =  ( PLUGGABLE_MAPPING "pluggableMapName" [ 
     "pluggableMapLocator" ] )
operatorName =  "QUOTED_STRING"
groupDirection =  INPUT | OUTPUT | INPUT_OUTPUT
groupLocator =  GROUP "groupName"
getGroupDetailClause =  GET ( PROPERTIES "propertyKeyList" | ATTRIBUTES [ 
     "connectionConditionClause" ] | "childType" ) | "getChildDetailClause"
      | "attributeLocator" "getAttributeDetailClause"
operatorBottomUpLocator =  OPERATOR "operatorName" [ 
     "pluggableMapBottomUpLocator" ]
groupBottomUpLocator =  GROUP "groupName" OF "operatorBottomUpLocator"
attributeBottomUpLocator =  ATTRIBUTE "attributeName" OF 
     "groupBottomUpLocator"
groupName =  "QUOTED_STRING"
attributeLocator =  ATTRIBUTE "attributeName"
getAttributeDetailClause =  GET ( PROPERTIES "propertyKeyList" | 
     BOUND_OBJECT | "childType" ) | "getChildDetailClause"
pluggableMapBottomUpLocator =  ( OF PLUGGABLE_MAPPING "pluggableMapName" [ 
     "pluggableMapBottomUpLocator" ] )
attributeName =  "QUOTED_STRING"

Keywords And Parameters

retrievePluggableMappingCommand

Retrieve the detail of a pluggable mapping such as how many mapping

operators are there are which mapping operators are connected to each

other.

pluggableMapName

Name of the pluggable map.

retrieveOperatorOwnerDetailClause

Retrieve the desired detail of a mapping or a pluggable mapping.

testConnectionClause

Verify if there is a connection between mapping operators, mapping groups

or mapping attributes.

propertyKeyList

The list of property keys.

operatorType

Type of a mapping operator. The following operator types are available:

ADVANCED_QUEUE, AGGREGATOR, ANYDATA_CAST, CONSTANT, CONSTRUCT_OBJECT, CUBE,

DATA_GENERATOR, DEDUPLICATOR, DIMENSION, EXPAND_OBJECT, EXPRESSION,

EXTERNAL_TABLE, FILTER, FLAT_FILE, INPUT_PARAMETER, INPUT_SIGNATURE,

ITERATOROPERATOR, JOINER, KEY_LOOKUP, LCRCAST, LCRSPLITTER, MATCHMERGE,

MATERIALIZED_VIEW, NAME_AND_ADDRESS, OUTPUT_PARAMETER, OUTPUT_SIGNATURE,

PIVOT, PLUGGABLE_MAPPING, POSTMAPPING_PROCESS, PREMAPPING_PROCESS,

SEQUENCE, SET_OPERATION, SORTER, SPLITTER, TABLE, TABLE_FUNCTION,

TRANSFORMATION, UNPIVOT, VIEW.

connectionConditionClause

List objects only if they are connected from or to objects specified in the

connection condition.

childType

Type of a child that belongs to map, mapping operator, mapping group or

mapping attribute.

getChildDetailClause

Get the desired detail of a child object that belongs to the mapping, map

variable, mapping operator, mapping group or mapping attribute.

operatorLocator

Location of a mapping operator.

getOperatorDetailClause

Get the desired detail of a mapping operator.

mappableBottomUpLocator

Location of the object to be bound to a mapping mapping operator or mapping

attribute.

propertyKey

A property key for an object.

Basic properties for MAPPING:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the mapping

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the mapping

Basic properties for OPERATOR:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the operator

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the operator

Basic properties for GROUP:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the group

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the group

Basic properties for ATTRIBUTE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the attribute

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the attribute

Name: DATATYPE

Type: STRING(20)

Valid Values: BINARY_DOUBLE, BINARY_FLOAT, BLOB, CHAR, CLOB, DATE, FLOAT,

INTEGER, INTERVAL DAY TO SECOND, INTERVAL YEAR TO MONTH, NCHAR, NCLOB,

NUMBER, NVARCHAR2, RAW, TIMESTAMP, TIMESTAMP WITH LOCAL TIME ZONE,

TIMESTAMP WITH TIME ZONE, VARHCAR, VARCHAR2, XMLTYPE

Default: ''

Datatype of the Attribute

Name: LENGTH

Type: NUMBER

Valid Values: N/A

Default: 0

Length of the attribute.

Name: PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

Precision of the attribute.

Name: SCALE

Type: NUMBER

Valid Values: N/A

Default: 0

Scale of the attribute.

Name: FRACTIONAL_SECONDS_PRECISION

Type: NUMBER

Valid Values: 0 - 9

Default: 0

The precision of a timestamp or interval.

Properties for PLUGGABLE_MAPPING:

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Properties for GROUP:

Name: COMMANDTYPE

Type: STRING

Valid Values: ALL_COMMAND_TYPES, DELETE, INSERT, UPDATE

Default: ALL_COMMAND_TYPES

The operation causing the change described by the LCR

Name: DEFAULT_EXPIRATION_TIME_OF_OPEN_RECORD

Type: STRING

Valid Values: N/A

Default: NULL

A date value to be served as the expiration time of a newly created open

record.

Name: DIMENSION_KEY

Type: STRING(32)

Valid Values: N/A

Default: ''

The column in which dimension key value is to be stored when this is a

target of star schema.

Name: EXPRESSION_INOUT

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: EXPRESSION_OUT

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: EXTRACTING_TYPE

Type: STRING

Valid Values: FROM_ALL, FROM_CURRENT

Default: FROM_CURRENT

The extracting operation to be performed when this is a source. If Extract

Current Only (Type 2 Only) is specified, only current records will be

extracted. If Extract All is specified, all records will be extracted.

Name: GROUP_TYPE

Type: STRING

Valid Values: REF_CURSOR, SCALAR

Default: SCALAR

This property specifies whether the input parameter is a scalar or a ref

cursor type

Name: INTERNAL_TABLE

Type: STRING

Valid Values: N/A

Default: ''

Internal staging table for this operator group

Name: LEVEL_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The bound name of this level.

Name: MODULENAME

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: PARAMETER_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The position of the argument in the table function signature corresponding

to this parameter group

Name: RECORD_TYPE_VALUES

Type: STRING

Valid Values: N/A

Default: ''

Record Type Values.

Name: RETURN_TABLE_OF_SCALAR

Type: BOOLEAN

Valid Values: true, false

Default: false

This property specifies whether the return of the table function is a TABLE

of SCALAR or not.

Name: ROW_LOCATOR

Type: STRING

Valid Values: N/A

Default: ''

An expression indicating which attribute within the input group is the row

locator.

Name: ROW_LOCATOR_VALUES

Type: STRING

Valid Values: N/A

Default: NULL, NULL

A comma-separated expressions that gives the possible values of the row

locator within a unpivot group.

Name: SLOWLY_CHANGING_TYPE

Type: STRING

Valid Values: TYPE1, TYPE2, TYPE3

Default: TYPE2

The slowly changing type of this target.

Name: SPLIT_CONDITION

Type: STRING

Valid Values: N/A

Default: ''

Condition that defines when to perform the attribute maps for the

attributes in this group.

Name: TABLENAME

Type: STRING

Valid Values: N/A

Default: ''

The source table corresponding to the LCR

Name: TARGET_TABLE_NAME

Type: STRING(32)

Valid Values: N/A

Default: ''

The table name bound to this target.

Properties for ATTRIBUTE:

Name: ADDRESS_TYPE

Type: STRING

Valid Values: NA_ADDRTYPE_DUAL, NA_ADDRTYPE_NORMAL

Default: NA_ADDRTYPE_NORMAL

You can designate an address type as Normal or Dual. For example, a dual

address occurs when a record contains both a street address and a P.O. Box;

this is common with business data. A normal address contains only one type

of address.

Name: ATTRIBUTE_ROLE

Type: STRING

Valid Values: END_DATE, LOOKUP_ACTIVE_DATE, MEASURE, NATURAL_KEY, NONE,

PARENT_NATURAL_KEY, PARENT_REF_KEY, PARENT_SURROGATE_KEY, PREV_VALUE,

START_DATE, SURROGATE_KEY, TRIGGER

Default: NONE

The type of role to indicate how this attribute will be used in history

logging. History As Previous Value indicates that this attribute will be

used to keep previous value. Surrogate Identifier indicates that this

attribute will be used to keep the surrogate identifier. Natural Identifier

indicates that this attribute will be used to keep the natural identifier.

Effective Time indicates that this attribute will be used as the effective

time of the version. Expiration Time indicates that this attribute will be

used as the expiration time of the version. Trigger indicates that this

attribute will be used to trigger history logging. If none is specified,

this attribute will be used to keep current value.

Name: BINDING_COLUMN_NAME

Type: STRING

Valid Values: N/A

Default: ''

The binding column name for this attribute

Name: DATA_TYPE

Type: STRING

Valid Values: N/A

Default: ''

The data type of the attribute

Name: DEFAULT_VALUE

Type: STRING

Valid Values: N/A

Default: ''

The Default Value for the function input parameter

Name: DIMENSION_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The dimension attribute referenced to by this level attribute.

Name: EXPRESSION

Type: STRING

Valid Values: N/A

Default: ''

The output expression for the attribute

Name: FIELD_DATA_TYPE

Type: STRING

Valid Values: BYTEINT, CHAR, DATE, DECIMAL, DECIMAL EXTERNAL, DOUBLE,

FLOAT, FLOAT EXTERNAL, GRAPHIC, GRAPHIC EXTERNAL, INTEGER, INTEGER

EXTERNAL, INTEGER UNSIGNED, INTERVAL DAY TO SECOND, INTERVAL YEAR TO MONTH,

LONG VARRAW, RAW, SMALLINT, SMALLINT UNSIGNED, TIMESTAMP, TIMESTAMP WITH

LOCAL TIME ZONE, TIMESTAMP WITH TIME ZONE, VARCHAR, VARCHARC, VARGRAPHIC,

VARRAW, VARRAWC, ZONED, ZONED EXTERNAL

Default: CHAR

SQL Data Type of the field in the file to which this operator is bound.

Name: FIELD_DATA_TYPE_LENGTH

Type: NUMBER

Valid Values: N/A

Default: 0

Field Length of the field in the file to which this operator is bound.

Name: FIELD_DATA_TYPE_PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

Field Precision of the field in the file to which this operator is bound.

Name: FIELD_DATA_TYPE_SCALE

Type: NUMBER

Valid Values: N/A

Default: 0

Field Scale of the field in the file to which this operator is bound.

Name: FIELD_DEFAULTIF_VALUE

Type: STRING

Valid Values: N/A

Default: ''

The expression that indicates the value of the field is blank or zero,

based on the datatype.

Name: FIELD_END_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The ending position of the field in the file

Name: FIELD_MASK

Type: STRING

Valid Values: N/A

Default: ''

The mask for the field

Name: FIELD_NULLIF_VALUE

Type: STRING

Valid Values: N/A

Default: ''

The expression that indicates the value of the field is null

Name: FIELD_START_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The starting position of the field in the file

Name: FRACTIONAL_SECONDS_PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

The data fractional seconds precision value of the attribute

Name: FUNCTION_RETURN

Type: BOOLEAN

Valid Values: true, false

Default: false

Specifies whether this output is the return value of this function

Name: GROUP_KEY

Type: BOOLEAN

Valid Values: true, false

Default: false

A boolean value to indicate whether this input attribute is a part of the

unpivot group key.

Name: INPUT_ROLE

Type: STRING

Valid Values: NA_ADDRESS, NA_ADDRESS2, NA_CITY, NA_COUNTRYCODE,

NA_COUNTRYNAME, NA_FIRMNAME, NA_FIRSTNAME, NA_FIRSTPARTNAME, NA_LASTLINE,

NA_LASTLINE_2, NA_LASTNAME, NA_LASTPARTNAME, NA_LINE1, NA_LINE10, NA_LINE2,

NA_LINE3, NA_LINE4, NA_LINE5, NA_LINE6, NA_LINE7, NA_LINE8, NA_LINE9,

NA_LOCALITYNAME, NA_LOCALITY_2, NA_LOCALITY_3, NA_LOCALITY_4,

NA_MIDDLENAME, NA_MIDDLENAME2, NA_MIDDLENAME3, NA_NEIGHBORHOOD, NA_NONE,

NA_PASSTHRU, NA_PERSON, NA_PERSON2, NA_PERSON3, NA_POSTALCODE, NA_POSTNAME,

NA_PRENAME, NA_PRIMARYADDRESS, NA_SECONDARYADDRESS, NA_STATE

Default: NA_NONE

Assigns a name-address input role to the selected input attribute

Name: INSTANCE

Type: STRING

Valid Values: NA_INSTANCE_FIFTH, NA_INSTANCE_FIRST, NA_INSTANCE_FOURTH,

NA_INSTANCE_SECOND, NA_INSTANCE_SIXTH, NA_INSTANCE_THIRD

Default: NA_INSTANCE_FIRST

The instance option is used when an address contains multiple names, you

can specify which name in the group should be used. In addition, you can

use this option to assign an address type to a miscellaneous address

component.

Name: IS_CAST_TARGET

Type: BOOLEAN

Valid Values: true, false

Default: false

Description not available.

Name: IS_OPTIONAL

Type: BOOLEAN

Valid Values: true, false

Default: false

If true, the input is not required to be connected

Name: IS_PREDEFINED_CONSTANT

Type: BOOLEAN

Valid Values: true, false

Default: false

Description not available.

Name: LENGTH

Type: NUMBER

Valid Values: N/A

Default: 0

The data length value of the attribute

Name: LEVEL_ATTRIBUTE_COLNAME_NAME

Type: STRING

Valid Values: N/A

Default: ''

Column name in the AW staging table and source view for this attribute.

Name: LEVEL_ATTRIBUTE_LEVEL_INDICATOR_COLNAME

Type: STRING

Valid Values: N/A

Default: ''

Level indicating columns name. This level will contain the name of the name

of the level this parent reference belongs to. This is relavant only for

skip level hierarchies.

Name: LEVEL_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name of the Level Attribute.

Name: LEVEL_RELATIONSHIP_NAME

Type: STRING

Valid Values: N/A

Default: ''

The level relationship name associated to this attribute.

Name: LOAD_COLUMN_WHEN_INSERTING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will particiate in the

insert load operation.

Name: LOAD_COLUMN_WHEN_UPDATING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will particiate in the

update load operation.

Name: LOOKUP_ATTRIBUTE_ROLE

Type: STRING

Valid Values: DIMENSION_KEY, END_DATE, NATURAL_KEY, NONE, PREV_VALUE,

START_DATE, SURROGATE_KEY, TRIGGER

Default: NONE

The type of role to indicate how this attribute will be used in history

logging. History As Previous Value indicates that this attribute will be

used to keep previous value. Surrogate Identifier indicates that this

attribute will be used to keep the surrogate identifier. Natural Identifier

indicates that this attribute will be used to keep the natural identifier.

Effective Time indicates that this attribute will be used as the effective

time of the version. Expiration Time indicates that this attribute will be

used as the expiration time of the version. Trigger indicates that this

attribute will be used to trigger history logging. If none is specified,

this attribute will be used to keep current value.

Name: MATCHING_ROW

Type: NUMBER

Valid Values: 1 - 1000

Default: 1

An positive integer to indicate from which row within the unpivot group

this output attribute obtains its data.

Name: MATCH_COLUMN_WHEN_DELETING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will be used to

construct the matching criteria between the incoming data and the existing

data on the target during the delete load operation.

Name: MATCH_COLUMN_WHEN_UPDATING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will be used to

construct the matching criteria between the incoming data and the existing

data on the target during the update load operation.

Name: MERGE_ATTR

Type: STRING

Valid Values: N/A

Default: ''

Related merge attribute

Name: OUTPUT_COMPONENT

Type: STRING

Valid Values: NA_ADDRESS, NA_ADDRESS2, NA_ADDRESSCORRECTED, NA_ADDRESSTYPE,

NA_AUTO_ZONE_IND, NA_BOXNAME, NA_BOXNUMBER, NA_BUILDINGNAME, NA_CART,

NA_CBSA_CODE, NA_CBSA_DESC, NA_CENSUSID, NA_CHECKDIGIT, NA_CITY,

NA_CITYCORRECTED, NA_CITYMATCH, NA_CITYWARNING, NA_CITY_ABBREV,

NA_CITY_ABBREV_2, NA_CITY_ALTERNATE, NA_COMPLEX, NA_COUNTRYCODE,

NA_COUNTRYCODE3, NA_COUNTRYNAME, NA_COUNTYNAME, NA_DELIVERYBEATCODE,

NA_DELIVERYOFFICECODE, NA_DELIVERYPOINT, NA_EMAIL, NA_EXTRA_1, NA_EXTRA_10,

NA_EXTRA_11, NA_EXTRA_12, NA_EXTRA_13, NA_EXTRA_14, NA_EXTRA_15,

NA_EXTRA_16, NA_EXTRA_17, NA_EXTRA_18, NA_EXTRA_19, NA_EXTRA_2,

NA_EXTRA_20, NA_EXTRA_3, NA_EXTRA_4, NA_EXTRA_5, NA_EXTRA_6, NA_EXTRA_7,

NA_EXTRA_8, NA_EXTRA_9, NA_FIPS, NA_FIPSCOUNTY, NA_FIPS_PLACE_CODE,

NA_FIRMCOUNT, NA_FIRMNAME, NA_FIRM_LOC, NA_FIRSTNAME, NA_FIRSTNAMESTD,

NA_GENDER, NA_GEO_MATCH_PREC, NA_INSTALLATIONNAME, NA_INSTALLATIONTYPE,

NA_ISADDRESSVERIFIABLE, NA_ISFOUND, NA_ISGOODADDRESS, NA_ISGOODGROUP,

NA_ISGOODNAME, NA_ISPARSED, NA_LACS, NA_LASTLINE, NA_LASTLINE_2,

NA_LASTNAME, NA_LATITUDE, NA_LOCALITYCODE, NA_LOCALITYNAME, NA_LOCALITY_2,

NA_LOCALITY_3, NA_LOCALITY_4, NA_LONGITUDE, NA_LOT, NA_LOT_ORDER, NA_MCD,

NA_MIDDLENAME, NA_MIDDLENAME2, NA_MIDDLENAME2STD, NA_MIDDLENAME3,

NA_MIDDLENAME3STD, NA_MIDDLENAMESTD, NA_MISCADDRESS, NA_MSA,

NA_NAMEDESIGNATOR, NA_NAMEWARNING, NA_NAME_FIRM_EXTRA, NA_NEIGHBORHOOD,

NA_NONAMBIGUOUSMATCH, NA_NONE, NA_NP_SEC_ADDR, NA_NP_UNIT_DESIG,

NA_NP_UNIT_NBR, NA_OTHERPOSTNAME, NA_PARSESTATUS, NA_PARSESTATUSDESC,

NA_PARSINGCOUNTRY, NA_PASSTHRU, NA_PERSON, NA_PERSONCOUNT, NA_PHONE,

NA_POSTALCODE, NA_POSTALCODECORRECTED, NA_POSTALCODEFORMATTED,

NA_POSTDIRECTIONAL, NA_POSTNAME, NA_PREDIRECTIONAL, NA_PRENAME,

NA_PRIMARYADDRESS, NA_PRIM_NAME_2, NA_RELATIONSHIP, NA_ROUTENAME,

NA_ROUTENUMBER, NA_SECONDARYADDRESS, NA_SSN, NA_STATE,

NA_STREETCOMPCORRECTED, NA_STREETCOMPMATCH, NA_STREETCORRECTED,

NA_STREETNAME, NA_STREETNAMEMATCH, NA_STREETNUMBER, NA_STREETNUMBERMATCH,

NA_STREETTYPE, NA_STREETWARNING, NA_TITLE, NA_UNITDESIGNATOR,

NA_UNITNUMBER, NA_URBANIZATIONNAME, NA_URBAN_IND, NA_ZIP4, NA_ZIP5

Default: NA_NONE

Assigns a Name and Address output component to the selected output

attribute.

Name: PARAMETER_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The position of the argument in the table function signature corresponding

to this parmater

Name: PIVOT_EXPRESSION

Type: STRING

Valid Values: N/A

Default: ''

A comma-separated expression that gives the input attribute to be used for

each output row in the pivot group.

Name: PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

The data precision value of the attribute

Name: REFERENCED_LEVEL_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The bound name of the parent level attribute associated to this attribute.

Name: REFERENCED_LEVEL_NAME

Type: STRING

Valid Values: N/A

Default: ''

The bound name of the parent level group associated to this attribute.

Name: REFERENCING_TYPE

Type: STRING

Valid Values: LOOKUP_KEY, NONE, REFERENCE_KEY_ALL, REFERENCE_KEY_ONLY

Default: NONE

The type of reference to indicate how this attribute participates in

resolving existing level relationships and level implementations. If Lookup

Reference Attribute is specified, this attribute will be used as lookup

attribute upon parent level to resolve level implementations during

loading. If Level Relationship Attribute (Snowflake) is specified, this

attribute will be directly used as level relationship attribute and no

lookup upon parent level would be performed during loading. If Level

Relationship Attribute (Star) is specified, this attribute will be directly

used as level relationship attribute, as well as lookup attribute upon

parent level to resolve level implementations during loading. If none is

specified, this attribute does not participate in any level relationship.

Name: SCALE

Type: NUMBER

Valid Values: N/A

Default: 0

The data scale value of the attribute

Name: SKIP_LEVEL_DIMENSION

Type: STRING

Valid Values: NO, YES

Default: NO

Indicates whether this level has a skip level parent.

Name: TYPE_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name of the field of the PLS Record or attribute of the Object Type or

column of the ROWTYPE that corresponds to this attribute. This property is

not applicable if the return type is TABLE of SCALAR.

Name: UNPIVOT_EXPRESSION

Type: STRING

Valid Values: N/A

Default: NULL

An expression that gives the input attribute to be used as the output of

this attribute.

Name: UPDATE_OPERATION

Type: STRING(3)

Valid Values: +=, -=, =, =-, =||, ||=

Default: =

The computation to be performed on this attribute between the incoming data

and the existing data on the target during the update load operation.

Name: VALUETYPE

Type: STRING

Valid Values: NEW, NEW_OLD, OLD

Default: NEW_OLD

Specifies the value type of this attribute

Properties for AGGREGATOR_OPERATOR:

Name: GROUP_BY_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

The Group By clause for the aggregation

Name: HAVING_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

The Having clause for the aggregation

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Properties for CONSTRUCT_OBJECT_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Properties for CUBE_OPERATOR:

Name: ALLOW_PARALLEL_SOLVE

Type: BOOLEAN

Valid Values: true, false

Default: false

If true, allow parallel solve when solving the cube.

Name: AW_STAGED_LOAD

Type: BOOLEAN

Valid Values: true, false

Default: false

If true, the set-based AW load data is staged into a temporary table before

loading into the AW.

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: CUBE_STORAGE_ISAW

Type: STRING

Valid Values: NO, YES

Default: NO

Indicates whether the storage for this cube in AW.

Name: DIMENSION_AWNAME

Type: STRING

Valid Values: N/A

Default: ''

AW Name which contains this Dimension.

Name: INCREMENTAL_AGGREGATION

Type: BOOLEAN

Valid Values: true, false

Default: true

Indicates whether incremental aggregation should be done or full

aggregation.

Name: LOADING_TYPE

Type: STRING

Valid Values: LOAD, REMOVE

Default: LOAD

The loading operation to be performed when this is a target. If LOAD is

specified, OWB will try to insert all input data into target. If REMOVE is

specified, OWB will try to match between the input data and target data to

compute existing data; it will then remove existing data from target.

Name: MAX_JOB_QUEUES_ALLOCATED

Type: NUMBER

Valid Values: 1 - 1000

Default: 0

The maximum number of job queues allocated when solving the cube.

Name: RUN_AGGREGATION

Type: STRING

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether to solve the cube or not . Specify YES

and cube data will be precomputed for the levels specified in the

definition of cube

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Name: TRUNCATE_LOAD

Type: BOOLEAN

Valid Values: true, false

Default: false

The truncate flag to indicate whether all existing dimension values should

be truncated before load begins (AW only).

Properties for DEDUPLICATOR_OPERATOR:

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Properties for DIMENSION_OPERATOR:

Name: AW_LOAD_MODEL

Type: STRING

Valid Values: OTHER, SNOWFLAKE, STAR

Default: SNOWFLAKE

The loading model for the AW dimension - star, snowflake, or other.

Name: AW_STAGED_LOAD

Type: BOOLEAN

Valid Values: true, false

Default: false

If true, the set-based AW load data is staged into a temporary table before

loading into the AW.

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: DEFAULT_EFFECTIVE_TIME_OF_OPEN_RECORD

Type: STRING

Valid Values: N/A

Default: SYSDATE

A date value to be served as the effective time of a newly created open

record. The same date value is also served as the expiration time to close

an existing open record.

Name: DEFAULT_EXPIRATION_TIME_OF_OPEN_RECORD

Type: STRING

Valid Values: N/A

Default: NULL

A date value to be served as the expiration time of a newly created open

record.

Name: DIMENSION_AWNAME

Type: STRING

Valid Values: N/A

Default: ''

AW Name which contains this Dimension.

Name: DIMENSION_ISAW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

Flag to indicate whether storage is AW.

Name: LOADING_TYPE

Type: STRING

Valid Values: LOAD, REMOVE

Default: LOAD

The loading operation to be performed when this is a target. If LOAD is

specified, OWB will try to match between the input data and target data to

compute new data and existing data; it will then create new data, as well

as modify existing data onto target. If REMOVE is specified, OWB will try

to match between the input data and target data to compute existing data;

it will then remove existing data from target.

Name: SLOWLY_CHANGING_TYPE

Type: STRING

Valid Values: TYPE1, TYPE2, TYPE3

Default: TYPE2

The slowly changing type of this target.

Name: SURROGATE_IDENTIFIER_LOADING_POLICY

Type: STRING

Valid Values: N/A

Default: ''

The name of the sequence used to generate surrogate key values when loading

the dimension.

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Name: TRUNCATE_LOAD

Type: BOOLEAN

Valid Values: true, false

Default: false

The truncate flag to indicate whether all existing dimension values should

be truncated before load begins (AW only).

Name: TYPE2_MATCH_CURRENT_ONLY

Type: STRING

Valid Values: NO, YES

Default: YES

If set to YES, only the current record will be used when performing the

selected operation (remove or extract) for type 2 dimension.

Name: TYPE2_RECORD_GAP_INTERVAL

Type: NUMBER

Valid Values: N/A

Default: 1

A numeric value indicating the number of units (see

TYPE2_RECORD_GAP_INTERVAL_UNITS property below) that will be added to the

expiration date of the previous closed record, to create the effective date

of a new open record.

Name: TYPE2_RECORD_GAP_INTERVAL_UNITS

Type: STRING

Valid Values: DAYS, HOURS, MINUTES, SECONDS, WEEKS

Default: SECONDS

A value indicating the units used for the gap that will be added to the

expiration date of the previous closed record, to create the effective date

of a new open record.

Properties for EXPAND_OBJECT_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Properties for EXTERNAL_TABLE_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: DATABASE_FILE_NAME

Type: STRING

Valid Values: N/A

Default: ''

Database file name to allocate extents from

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DATA_COLLECTION_FREQUENCY

Type: STRING(16)

Valid Values: DAY, HOUR, MINUTE, MONTH, QUARTER, UNKNOWN, YEAR

Default: UNKNOWN

New Data Granularity

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: DIRECT

Type: BOOLEAN

Valid Values: true, false

Default: false

Directly swap source into target as a partition without first creating a

staging table.

Name: ENABLE_CONSTRAINTS

Type: BOOLEAN

Valid Values: true, false

Default: true

Enable Constraints

Name: ERROR_SELECT_FILTER

Type: STRING(3)

Valid Values: NO, YES

Default: YES

Rows selected from the error table will contain only errors created by this

operator in this map execution

Name: ERROR_SELECT_ROLL_UP

Type: STRING(3)

Valid Values: NO, YES

Default: YES

'Records selected from the error table will be rolled up by the error name,

so all errors generated by a particular input record will be rolled up into

a single record with the error names concatenated in the error name

attribute.

Name: ERROR_TABLE_NAME

Type: STRING(32)

Valid Values: N/A

Default: ''

The error table name of this target to log invalid records.

Name: EVALUATE_CHECK_CONSTRAINTS

Type: BOOLEAN

Valid Values: true, false

Default: false

Evaluate check constraints

Name: EXCEPTIONS_TABLE_NAME

Type: STRING

Valid Values: N/A

Default: ''

Exceptions Table Name

Name: EXTRACTION_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when extracting from this table using SQL

Name: LOADING_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when loading into this table using SQL

Name: PARTITION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Partition Name

Name: PEL_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

PEL Enabled

Name: PRIMARY_SOURCE

Type: STRING

Valid Values: NO, YES

Default: NO

A boolean value to indicate whether this is a primary source or not (only

used in EDW).

Name: RECORDS_TO_SKIP

Type: NUMBER

Valid Values: >= 0

Default: 0

Number of records to skip

Name: REPLACE_DATA

Type: BOOLEAN

Valid Values: true, false

Default: false

Replace existing data in target partition if there is any.

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: SINGLEROW

Type: BOOLEAN

Valid Values: true, false

Default: false

Singlerow

Name: SORTED_INDEXES_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

Sorted Indexes Clause

Name: SUBPARTITION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Subpartition Name

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Name: TRAILING_NULLCOLS

Type: BOOLEAN

Valid Values: true, false

Default: false

Trailing Nullcols

Name: TRUNCATE_ERROR_TABLE

Type: STRING(3)

Valid Values: NO, YES

Default: NO

If YES, then the error table will be truncated prior to use. This is

ignored if there are no active data rules applied to the object.

Properties for FILTER_OPERATOR:

Name: FILTER_CONDITION

Type: STRING

Valid Values: N/A

Default: ''

The boolean filtering condition that identifies what data is to be

processed. Any row with a false condition will be ignored.

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Properties for FLAT_FILE_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by reconciliation for this item. Unlike other

operators, it is not needed for generation. By default it is the same name

as the item.

Name: CONCATENATE_RECORDS

Type: NUMBER

Valid Values: N/A

Default: 0

Number of Physical Records per Logical Record.

Name: CONTINUATION_CHARACTER

Type: STRING

Valid Values: N/A

Default: ''

Character that indicates the record is continued on the next line.

Name: CONTINUATION_CHARACTER_ON_NEXT_LINE

Type: BOOLEAN

Valid Values: true, false

Default: FALSE

If there is a continuation character, is it at the start of the line.

Name: FIELD_ENCLOSURE_CHARACTERS

Type: STRING

Valid Values: N/A

Default: ''

Characters that wrap fields. Example ' or ".

Name: FIELD_NAMES_IN_THE_FIRST_ROW

Type: BOOLEAN

Valid Values: true, false

Default: FALSE

Indicates whether file contains a header row.

Name: FIELD_TERMINATION_CHARACTER

Type: STRING

Valid Values: N/A

Default: ,

Character that separates the fields of a delimited file.

Name: FILE_FORMAT

Type: STRING

Valid Values: DELIMITED, FIXED

Default: DELIMITED

File Format (Fixed or Delimited).

Name: LOADING_TYPE

Type: STRING(16)

Valid Values: INSERT, NONE, UPDATE

Default: INSERT

The loading operation to be performed

Name: OUTPUT_AS_XML

Type: BOOLEAN

Valid Values: true, false

Default: false

Output data to file in XML format.

Name: RECORD_DELIMITER

Type: STRING

Valid Values: N/A

Default: ''

Character that indicates the end of the record.

Name: RECORD_SIZE

Type: NUMBER

Valid Values: N/A

Default: 0

Size of a fixed length record.

Name: RECORD_TYPE_LENGTH

Type: NUMBER

Valid Values: N/A

Default: 0

If this is a multi record file, this will indicate the length of the data

that identifies the type of record. It is used with the Record Type

Position.

Name: RECORD_TYPE_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

If this is a multi record file, this will indicate the position of the

field that identifies the type of record.

Name: SAMPLED_FILE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The default name of the physical file to be used by sqlloader. If the file

was sampled, the default was set from sampled file name.

Name: SOURCE_DATA_FILE_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The Location of the File Module of this Flat File at the time of

reconciliation. Stored as UOID.

Name: TARGET_DATA_FILE_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access referenced entity.

Name: TARGET_DATA_FILE_NAME

Type: STRING

Valid Values: N/A

Default: ''

Name of the target data file, including extension (file type). This name

should not include the file path. To specify where the target data file

will be created/appended, set the Target Data File Location.

Properties for ITERATOR_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Properties for JOINER_OPERATOR:

Name: JOIN_CONDITION

Type: STRING

Valid Values: N/A

Default: ''

The Join Condition for the join operator

Properties for KEY_LOOKUP_OPERATOR:

Name: BOUND_LEVEL

Type: STRING

Valid Values: N/A

Default: ''

The level name of the bound level, if this is a dimension lookup.

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: CREATE_NO_MATCH_ROW

Type: BOOLEAN

Valid Values: true, false

Default: true

If true, a row is created and the user-defined default values are used, in

the case where no lookup match is found. If false, no row is produced.

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: EXTRACTION_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when extracting from this table using SQL

Name: LOOKUP_CONDITION

Type: STRING

Valid Values: N/A

Default: ''

Key lookup condition based on the source inputs. This condition is used to

lookup a value in the bound table. If the condition is not met, the

default value expression will be returned. If a default expression is not

defined, null is used.

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Name: TYPE2_HISTORY_LOOKUP_DATE

Type: STRING

Valid Values: N/A

Default: ''

A date expression used when doing a lookup on a type 2 dimension level, to

specify the historical date for which to retrieve data. If blank, the most

current record is used.

Properties for LCRCAST_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Properties for MATCHMERGE_OPERATOR:

Name: MATCH_KEYS

Type: STRING

Valid Values: N/A

Default: ''

Ordered list of attributes that control the set of records to be matched at

any at any particular time.

Name: MATCH_NEW_RECORDS

Type: BOOLEAN

Valid Values: true, false

Default: false

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"MATCHMERGE.GENERAL.MATCH_NEW_RECORDS:DESCRIPTION"

Name: MATCH_NEW_RECORD_CONDITION

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"MATCHMERGE.GENERAL.MATCH_NEW_RECORD_CONDITION:DESCRIPTION"

Name: MERGED_PREFIX

Type: STRING

Valid Values: N/A

Default: ''

Set the prefix used for the merged attributes in the cross-reference group.

Properties for MATERIALIZED_VIEW_OPERATOR:

Name: ADVANCED_MATCH_BY_CONSTRAINT

Type: STRING

Valid Values: N/A

Default: NO_CONSTRAINTS

This property is used by public API and scripting to influence how columns

are used for UPDATE or DELETE DMLs. If this property is set with the name

of a primary or unique key, all the columns in the key will be used for

matching during UPDATE or DELETE; and all the columns not in the key are

used for loading. The property can also be assigned the value "All

constraints" or "No constraints". If the DML type is INSERT,

TRUNCATE/INSERT, or CHECK/INSERT, setting this property causes no effect.

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: ERROR_SELECT_FILTER

Type: STRING(3)

Valid Values: NO, YES

Default: YES

Rows selected from the error table will contain only errors created by this

operator in this map execution

Name: ERROR_SELECT_ROLL_UP

Type: STRING(3)

Valid Values: NO, YES

Default: YES

'Records selected from the error table will be rolled up by the error name,

so all errors generated by a particular input record will be rolled up into

a single record with the error names concatenated in the error name

attribute.

Name: ERROR_TABLE_NAME

Type: STRING(32)

Valid Values: N/A

Default: ''

The error table name of this target to log invalid records.

Name: EXTRACTION_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when extracting from this table using SQL

Name: LOADING_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when loading into this table using SQL

Name: LOADING_TYPE

Type: STRING(16)

Valid Values: CHECK_INSERT, DELETE, DELETE_INSERT, DERIVE_FROM_LCR, INSERT,

INSERT_UPDATE, NONE, TRUNCATE_INSERT, UPDATE, UPDATE_INSERT

Default: INSERT

The loading operation to be performed when this is a target.

Name: MATCH_BY_CONSTRAINT

Type: STRING

Valid Values: N/A

Default: ALL_CONSTRAINTS

A property to indicate whether unique or primary key information on this

target will override the matching criteria obtained from Match by

constraint property on the attributes of this target.

Name: PRIMARY_SOURCE

Type: STRING

Valid Values: NO, YES

Default: NO

A boolean value to indicate whether this is a primary source or not (only

used in EDW).

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: TARGET_FILTER_FOR_DELETE

Type: STRING

Valid Values: N/A

Default: ''

A condition on the rows in the target and if evaluated to true, that row

will participate in the delete loading operation.

Name: TARGET_FILTER_FOR_UPDATE

Type: STRING

Valid Values: N/A

Default: ''

A condition on the rows in the target and if evaluated to true, that row

will participate in the update loading operation.

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Name: TRUNCATE_ERROR_TABLE

Type: STRING(3)

Valid Values: NO, YES

Default: NO

If YES, then the error table will be truncated prior to use. This is

ignored if there are no active data rules applied to the object.

Properties for NAME_AND_ADDRESS_OPERATOR:

Name: ADDRESS_LINE_1

Type: STRING

Valid Values: N/A

Default: ''

Address line 1

Name: ADDRESS_LINE_2

Type: STRING

Valid Values: N/A

Default: ''

Address line 2

Name: ADDRESS_LINE_3

Type: STRING

Valid Values: N/A

Default: ''

Address line 3

Name: ADDRESS_LINE_4

Type: STRING

Valid Values: N/A

Default: ''

Address line 4

Name: DUAL_ADDRESS_ASSIGNMENT

Type: STRING

Valid Values: NA_DUALADDR_CLOSESTTOLASTLINE, NA_DUALADDR_POBOX,

NA_DUALADDR_STREET

Default: NA_DUALADDR_STREET

A dual address refers to two address lines for the same destination. For

example, a record contains both a street address and a P.O. Box; this is

common with business data. Select which of the two address lines should be

assigned in these cases.

Name: GENERATE_CASS_REPORT

Type: STRING

Valid Values: NA_NO, NA_YES

Default: NA_NO

Select "Yes" to generate CASS (Coding Accuracy Support System) report. CASS

report is a text file specified by the United States Postal Service. The

report is written to the [nas/bin/admin/reports] folder under the home

folder of the name/address server.

Name: LIST_NAME

Type: STRING

Valid Values: N/A

Default: ''

The list name is optional and provides a reference for tracking multiple

CASS reports.

Name: PARSING_TYPE

Type: STRING

Valid Values: NA_ADDRESSONLY, NA_NAMEANDADDRESS, NA_NAMEONLY

Default: NA_NAMEANDADDRESS

Select a name-address parsing type to be performed on the input data

Name: PRIMARY_COUNTRY

Type: STRING

Valid Values: NA_AND, NA_ARE, NA_ARG, NA_AUS, NA_AUT, NA_BEL, NA_BGD,

NA_BGR, NA_BHS, NA_BLZ, NA_BMU, NA_BRA, NA_BRB, NA_BRN, NA_CAN, NA_CHE,

NA_CHL, NA_CHN, NA_COL, NA_CZE, NA_DEU, NA_DNK, NA_EGY, NA_ESP, NA_EST,

NA_FIN, NA_FRA, NA_GBR, NA_GRC, NA_GUM, NA_HKG, NA_HUN, NA_ICL, NA_IND,

NA_IRL, NA_IRN, NA_IRQ, NA_ISR, NA_ITA, NA_JAM, NA_JOR, NA_JPN, NA_KHM,

NA_KOR, NA_LIE, NA_LTU, NA_LUX, NA_LVA, NA_MEX, NA_MYS, NA_NLD, NA_NOR,

NA_NZL, NA_PAK, NA_PER, NA_PHL, NA_POL, NA_PRT, NA_ROM, NA_RUS, NA_SGP,

NA_SVN, NA_SWE, NA_THA, NA_UKR, NA_USA, NA_VEN, NA_YUG, NA_ZAF

Default: NA_USA

Select the primary parsing country which best represents the input data.

Input addresses having the same country as the primary parsing country will

only need to be parsed once. Input addresses having a different country

than the primary parsing country may be reparsed by a different parser. For

performance reasons, it is best to minimize the percentage of 2-pass parses

by selecting the optimal parser.

Name: PROCESSOR_NAME

Type: STRING

Valid Values: N/A

Default: ''

The processor name is the name of the organization submitting the CASS

report.

Properties for PIVOT_OPERATOR:

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Name: PIVOT_GROUP_SIZE

Type: NUMBER

Valid Values: 1 - 1000

Default: 2

A number specifying the pivot group size for the pivot operation. Pivot

group size determines the number of output rows that are produced from each

input row.

Properties for PLUGGABLE_MAPPING_OPERATOR:

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Properties for POSTMAPPING_PROCESS_OPERATOR:

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: FUNCTION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Name of the transformation to be called.

Name: POSTMAPPING_PROCESS_RUN_CONDITION

Type: STRING(10)

Valid Values: ALWAYS, ON_ERROR, ON_SUCCESS, ON_WARNING

Default: ON_SUCCESS

Indicates under what condition of the mapping the post-mapping process will

be run.

Name: ROW-BASED_ONLY

Type: BOOLEAN

Valid Values: true, false

Default: false

Indicates if this transformation must be used only Row Based mode. Some

transformations can be used in SQL mode as well as Row Based mode.

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Properties for PREMAPPING_PROCESS_OPERATOR:

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: FUNCTION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Name of the transformation to be called.

Name: MAPPING_RUN_CONDITION

Type: STRING(10)

Valid Values: ALWAYS, ON_ERROR, ON_SUCCESS

Default: ON_SUCCESS

Indicates under what condition of the pre-mapping process the mapping will

be run.

Name: ROW-BASED_ONLY

Type: BOOLEAN

Valid Values: true, false

Default: false

Indicates if this transformation must be used only Row Based mode. Some

transformations can be used in SQL mode as well as Row Based mode.

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Properties for QUEUE_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: REAL_TIME_DATA_FORMAT

Type: STRING

Valid Values: LOGICAL_CHANGE_RECORD, MESSAGE

Default: LOGICAL_CHANGE_RECORD

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"ADVANCEDQUEUE.DEFAULT.REALTIMEFORMAT:DESCRIPTION"

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Properties for SEQUENCE_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Properties for SET_OPERATION_OPERATOR:

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Name: SET_OPERATION

Type: STRING

Valid Values: INTERSECT, MINUS, UNION, UNIONALL

Default: UNION

Specifies the set operation that is to be performed by this operator.

Properties for SORTER_OPERATOR:

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Name: ORDER_BY_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

The Order By Clause

Properties for SPLITTER_OPERATOR:

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Properties for TABLE_FUNCTION_OPERATOR:

Name: TABLE_FUNCTION_IS_TARGET

Type: BOOLEAN

Valid Values: true, false

Default: false

Description not available.

Name: TABLE_FUNCTION_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name of the Table Function

Properties for TABLE_OPERATOR:

Name: ADVANCED_MATCH_BY_CONSTRAINT

Type: STRING

Valid Values: N/A

Default: NO_CONSTRAINTS

This property is used by public API and scripting to influence how columns

are used for UPDATE or DELETE DMLs. If this property is set with the name

of a primary or unique key, all the columns in the key will be used for

matching during UPDATE or DELETE; and all the columns not in the key are

used for loading. The property can also be assigned the value "All

constraints" or "No constraints". If the DML type is INSERT,

TRUNCATE/INSERT, or CHECK/INSERT, setting this property causes no effect.

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: CONFLICT_RESOLUTION

Type: BOOLEAN

Valid Values: true, false

Default: true

Detect and resolve any conflicts that may arise during DML using the LCR

APIs

Name: DATABASE_FILE_NAME

Type: STRING

Valid Values: N/A

Default: ''

Database file name to allocate extents from

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DATA_COLLECTION_FREQUENCY

Type: STRING(16)

Valid Values: DAY, HOUR, MINUTE, MONTH, QUARTER, UNKNOWN, YEAR

Default: UNKNOWN

New Data Granularity

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: DIRECT

Type: BOOLEAN

Valid Values: true, false

Default: false

Directly swap source into target as a partition without first creating a

staging table.

Name: ENABLE_CONSTRAINTS

Type: BOOLEAN

Valid Values: true, false

Default: true

Enable Constraints

Name: ERROR_SELECT_FILTER

Type: STRING(3)

Valid Values: NO, YES

Default: YES

Rows selected from the error table will contain only errors created by this

operator in this map execution

Name: ERROR_SELECT_ROLL_UP

Type: STRING(3)

Valid Values: NO, YES

Default: YES

'Records selected from the error table will be rolled up by the error name,

so all errors generated by a particular input record will be rolled up into

a single record with the error names concatenated in the error name

attribute.

Name: ERROR_TABLE_NAME

Type: STRING(32)

Valid Values: N/A

Default: ''

The error table name of this target to log invalid records.

Name: EVALUATE_CHECK_CONSTRAINTS

Type: BOOLEAN

Valid Values: true, false

Default: false

Evaluate check constraints

Name: EXCEPTIONS_TABLE_NAME

Type: STRING

Valid Values: N/A

Default: ''

Exceptions Table Name

Name: EXTRACTION_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when extracting from this table using SQL

Name: JOINRANK

Type: FLOAT

Valid Values: N/A

Default: 0

Join Rank

Name: LOADING_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when loading into this table using SQL

Name: LOADING_TYPE

Type: STRING(16)

Valid Values: CHECK_INSERT, DELETE, DELETE_INSERT, DERIVE_FROM_LCR, INSERT,

INSERT_UPDATE, NONE, TRUNCATE_INSERT, UPDATE, UPDATE_INSERT

Default: INSERT

The loading operation to be performed when this is a target.

Name: MATCH_BY_CONSTRAINT

Type: STRING

Valid Values: N/A

Default: ALL_CONSTRAINTS

A property to indicate whether unique or primary key information on this

target will override the matching criteria obtained from Match by

constraint property on the attributes of this target.

Name: PARTITION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Partition Name

Name: PEL_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

PEL Enabled

Name: PRIMARY_SOURCE

Type: STRING

Valid Values: NO, YES

Default: NO

A boolean value to indicate whether this is a primary source or not (only

used in EDW).

Name: RECORDS_TO_SKIP

Type: NUMBER

Valid Values: >= 0

Default: 0

Number of records to skip

Name: REPLACE_DATA

Type: BOOLEAN

Valid Values: true, false

Default: false

Replace existing data in target partition if there is any.

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: SINGLEROW

Type: BOOLEAN

Valid Values: true, false

Default: false

Singlerow

Name: SORTED_INDEXES_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

Sorted Indexes Clause

Name: SUBPARTITION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Subpartition Name

Name: TARGET_FILTER_FOR_DELETE

Type: STRING

Valid Values: N/A

Default: ''

A condition on the rows in the target and if evaluated to true, that row

will participate in the delete loading operation.

Name: TARGET_FILTER_FOR_UPDATE

Type: STRING

Valid Values: N/A

Default: ''

A condition on the rows in the target and if evaluated to true, that row

will participate in the update loading operation.

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Name: TRAILING_NULLCOLS

Type: BOOLEAN

Valid Values: true, false

Default: false

Trailing Nullcols

Name: TRUNCATE_ERROR_TABLE

Type: STRING(3)

Valid Values: NO, YES

Default: NO

If YES, then the error table will be truncated prior to use. This is

ignored if there are no active data rules applied to the object.

Name: USE_LCR_API

Type: BOOLEAN

Valid Values: true, false

Default: true

Use LCR APIs if possible to perform the DML

Properties for TRANSFORMATION_OPERATOR:

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: FUNCTION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Name of the transformation to be called.

Name: IS_TARGET

Type: BOOLEAN

Valid Values: true, false

Default: false

If true, then the function is a target

Name: RETURN_TYPE

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: ROW-BASED_ONLY

Type: BOOLEAN

Valid Values: true, false

Default: false

Indicates if this transformation must be used only Row Based mode. Some

transformations can be used in SQL mode as well as Row Based mode.

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Properties for UNPIVOT_OPERATOR:

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Properties for VIEW_OPERATOR:

Name: ADVANCED_MATCH_BY_CONSTRAINT

Type: STRING

Valid Values: N/A

Default: NO_CONSTRAINTS

This property is used by public API and scripting to influence how columns

are used for UPDATE or DELETE DMLs. If this property is set with the name

of a primary or unique key, all the columns in the key will be used for

matching during UPDATE or DELETE; and all the columns not in the key are

used for loading. The property can also be assigned the value "All

constraints" or "No constraints". If the DML type is INSERT,

TRUNCATE/INSERT, or CHECK/INSERT, setting this property causes no effect.

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: DATABASE_FILE_NAME

Type: STRING

Valid Values: N/A

Default: ''

Database file name to allocate extents from

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: ERROR_SELECT_FILTER

Type: STRING(3)

Valid Values: NO, YES

Default: YES

Rows selected from the error table will contain only errors created by this

operator in this map execution

Name: ERROR_SELECT_ROLL_UP

Type: STRING(3)

Valid Values: NO, YES

Default: YES

'Records selected from the error table will be rolled up by the error name,

so all errors generated by a particular input record will be rolled up into

a single record with the error names concatenated in the error name

attribute.

Name: ERROR_TABLE_NAME

Type: STRING(32)

Valid Values: N/A

Default: ''

The error table name of this target to log invalid records.

Name: EXTRACTION_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when extracting from this table using SQL

Name: LOADING_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when loading into this table using SQL

Name: LOADING_TYPE

Type: STRING(16)

Valid Values: CHECK_INSERT, DELETE, DELETE_INSERT, DERIVE_FROM_LCR, INSERT,

INSERT_UPDATE, NONE, TRUNCATE_INSERT, UPDATE, UPDATE_INSERT

Default: INSERT

The loading operation to be performed when this is a target.

Name: MATCH_BY_CONSTRAINT

Type: STRING

Valid Values: N/A

Default: ALL_CONSTRAINTS

A property to indicate whether unique or primary key information on this

target will override the matching criteria obtained from Match by

constraint property on the attributes of this target.

Name: PARTITION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Partition Name

Name: PRIMARY_SOURCE

Type: STRING

Valid Values: NO, YES

Default: NO

A boolean value to indicate whether this is a primary source or not (only

used in EDW).

Name: RECORDS_TO_SKIP

Type: NUMBER

Valid Values: >= 0

Default: 0

Number of records to skip

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: SINGLEROW

Type: BOOLEAN

Valid Values: true, false

Default: false

Singlerow

Name: SORTED_INDEXES_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

Sorted Indexes Clause

Name: SUBPARTITION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Subpartition Name

Name: TARGET_FILTER_FOR_DELETE

Type: STRING

Valid Values: N/A

Default: ''

A condition on the rows in the target and if evaluated to true, that row

will participate in the delete loading operation.

Name: TARGET_FILTER_FOR_UPDATE

Type: STRING

Valid Values: N/A

Default: ''

A condition on the rows in the target and if evaluated to true, that row

will participate in the update loading operation.

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Name: TRAILING_NULLCOLS

Type: BOOLEAN

Valid Values: true, false

Default: false

Trailing Nullcols

Name: TRUNCATE_ERROR_TABLE

Type: STRING(3)

Valid Values: NO, YES

Default: NO

If YES, then the error table will be truncated prior to use. This is

ignored if there are no active data rules applied to the object.

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

childName

Name of a child that belongs to map, mapping operator, mapping group or

mapping attribute.

pluggableMapLocator

Location of a child pluggable mapping within a mapping or another pluggable

mapping.

operatorName

Name of a mapping operator.

groupDirection

Direction of a mapping group.

groupLocator

Location of a mapping group.

getGroupDetailClause

Get the desired detail of a mapping group.

operatorBottomUpLocator

Location of a mapping operator.

groupBottomUpLocator

Location of a mapping group.

attributeBottomUpLocator

Location of a mapping attribute.

groupName

Name of a mapping group.

attributeLocator

Location of a mapping attribute.

getAttributeDetailClause

Get the desired detail of a mapping attribute.

pluggableMapBottomUpLocator

Location of a child pluggable mapping within a mapping or another pluggable

mapping.

attributeName

Name of a mapping attribute.

See Also

OMBRETRIEVE, OMBCREATE MAPPING, OMBALTER MAPPING, OMBDROP MAPPING

OMBRETRIEVE PRESENTATION_TEMPLATE

Purpose

Retrieve details of a presentation template.

Prerequisites

Should be in the context of a business presentation or use the full path.

Syntax

retrieveReportCommand =  OMBRETRIEVE PRESENTATION_TEMPLATE "QUOTED_STRING" 
     ( "retrieveReportClause" | "retrieveReportDataItemClause" | 
     "retrieveReportEdgeItemClause" )
retrieveReportClause =  GET ( "getPropertiesClause" | 
     "getReferenceIconSetClause" | "getReportSCOClause" )
retrieveReportDataItemClause =  DATA_ITEM "QUOTED_STRING" GET ( ( REF | 
     REFERENCE ) MEASURE | "getPropertiesClause" )
retrieveReportEdgeItemClause =  EDGE_ITEM "QUOTED_STRING" GET ( REFERENCES 
     | "getPropertiesClause" | ( REF | REFERENCE ) ( ROLE | DIMENSION ) )
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
getReferenceIconSetClause =  ( REF | REFERENCE ) ICONSET
getReportSCOClause =  EDGE_ITEMS | DATA_ITEMS | ( REF | REFERENCE ) CUBE
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveReportCommand

To retrieve a presentation template.

QUOTED_STRING

name of the presentation template.

retrieveReportClause

Retrieves the contents of the presentation template.

GET

For presentation template this clause retrieves the following

DATA_ITEMS retrieves the list of data items for the presentation template.

EDGE_ITEMS retrieves the list of edge items for the presentation template.

REF CUBE retrieves the Cube that the presentation template relates to.

retrieveReportDataItemClause

Retrieves the properties of the data item.

QUOTED_STRING

name of the data item.

GET

For data item this clause retrieves the following

REF MEASURE retrieves the measure the report item uses.

retrieveReportEdgeItemClause

Retrieves the properties of the edge item.

QUOTED_STRING

name of the edge item.

GET

For edge item this clause retrieves the following

REF ROLE retrieves the dimension role the edge item is associated with,

this returns an empty value if not present.

getPropertiesClause

Retrieves the properties of the object.

Basic properties for presentation template:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the presentation template

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the presentation template

Name: PRESENTATION_TYPE

Type: STRING(40)

Valid Values: CROSSTAB, TABLE or a subtype of graph

Default: ''

The type of the presentation template

Basic properties for EDGE_ITEM:

Name: PLACEMENT

Type: STRING(40)

Valid Values: TOP OR SIDE, TOP, SIDE, PAGE

Default: ''

The placement of the edge item in the presentation template

Properties for PRESENTATION_TEMPLATE:

Name: CATALOG_FOLDER

Type: STRING

Valid Values: N/A

Default: ''

Catalog Folder for deployed BI Beans presentation

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

Location for referenced database objects

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to

create an object only for those objects marked as Deployable = true

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

getReferenceIconSetClause

Get specified Icon Set.

getReportSCOClause

This clause gets the details of the presentation template.

propertyNameList

This is the list of property names.

See Also

OMBALTER PRESENTATION_TEMPLATE, OMBCREATE PRESENTATION_TEMPLATE

OMBRETRIEVE PROCEDURE

Purpose

Retrieve details of the Procedure.

Prerequisites

Should be in the context of a Oracle Module or Package or Transformation

Module.

Syntax

retrieveProcedureCommand =  OMBRETRIEVE PROCEDURE "QUOTED_STRING" ( 
     "getPropertiesClause" | "getFuncProcParameterClause" | 
     "getFuncProcParameterPositionClause" | "getFuncProcSignatureClause" | 
     "retrieveFuncProcParameterClause" | "getRelationalDependentsClause" | 
     "getReferenceIconSetClause" )
getPropertiesClause =  GET PROPERTIES "(" "propertyNameList" ")"
getFuncProcParameterClause =  GET PARAMETERS
getFuncProcParameterPositionClause =  GET PARAMETER AT POSITION 
     "INTEGER_LITERAL"
getFuncProcSignatureClause =  GET SIGNATURE
retrieveFuncProcParameterClause =  PARAMETER "QUOTED_STRING" 
     "getPropertiesClause"
getRelationalDependentsClause =  GET ( REF | REFERENCE ) ( TABLES | VIEWS |
      MATERIALIZED_VIEWS | SEQUENCES | FUNCTIONS | PROCEDURES | PACKAGES )
getReferenceIconSetClause =  GET ( REF | REFERENCE ) ICONSET
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveProcedureCommand

This command retrieves the details of a Procedure

QUOTED_STRING

Name of the existing Procedure or path to the Procedure.

getPropertiesClause

Used to get properties (core, user-defined) for procedure. Valid properties

are shown below:

Basic properties for PROCEDURE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Procedure

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Procedure

Name: IMPLEMENTATION

Type: STRING

Valid Values: N/A

Default: ''

Set the code for Procedure which is included global variable declaration

and code between BEGIN and END.

Basic properties for PARAMETER:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Parameter

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Parameter

Name: DATATYPE

Type: STRING

Valid Values: BINARY_DOUBLE, BINARY_FLOAT, BINARY_INTEGER, BLOB, BOOLEAN,

CHAR, CLOB, DATE, FLOAT, INTEGER, INTERVAL DAY TO SECOND, INTERVAL YEAR TO

MONTH, NCHAR, NCLOB, NUMBER, NVARCHAR2, PLS_INTEGER, RAW, TIMESTAMP,

TIMESTAMP WITH LOCAL TIME ZONE, TIMESTAMP WITH TIME ZONE, VARHCAR,

VARCHAR2, XMLTYPE

Default: NUMBER

Set the data type for Parameter

Name: IN_OUT

Type: STRING

Valid Values: IN, OUT, INOUT

Default: 'IN'

Set the parameter mode for Parameter

Name: DEFAULT_VALUE

Type: STRING

Valid Values: N/A

Default: ''

Set the default value for Parameter

Properties for PROCEDURE:

Name: AUTHID

Type: STRING

Valid Values: Current_User, Definer, None

Default: None

Generate the transformation with selected AUTHID option. Function will be

executed with the permissions defined by the AUTHID clause rather than the

function owner's permissions.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

getFuncProcParameterClause

Get all the parameter names of the Procedure

getFuncProcParameterPositionClause

Get the parameter position of Function

getFuncProcSignatureClause

Get the complete signature of the Function which includes parameter names,

datatype, in/out type and default values

retrieveFuncProcParameterClause

Get the parameter information such as datatype, default value, in/out type

and position

QUOTED_STRING

Name of the existing Parameter

getRelationalDependentsClause

This clause retrieves referential dependencies to other relational objects.

propertyNameList

Comma separated list of property names. Property names are unquoted.

See Also

OMBRETRIEVE

OMBRETRIEVE PROCESS_FLOW

Purpose

Retrieves the details of the Process Flow.

Prerequisites

Should be in the context of a Process Flow Package.

Syntax

retrieveProcessFlowCommand =  OMBRETRIEVE PROCESS_FLOW "QUOTED_STRING" ( 
     "retrieveProcessFlowClause" | "retrieveActivityClause" | 
     "retrieveTransitionClause" | "retrieveProcessParameterClause" | 
     "retrieveProcessVariableClause" )
retrieveProcessFlowClause =  "getPropertiesClause" | 
     "getReferenceIconSetClause" | GET "getProcessFlowSCOClause"
retrieveActivityClause =  ACTIVITY "QUOTED_STRING" ( "getPropertiesClause" 
     | "getReferenceIconSetClause" | "getActivityBoundObject" | 
     "getActivityTransitionClause" | "getActivityParameterClause" | 
     "getActivityParameterPropertiesClause" )
retrieveTransitionClause =  TRANSITION "QUOTED_STRING" ( 
     "getPropertiesClause" | GET "getTransitionActivityClause" )
retrieveProcessParameterClause =  PARAMETER "QUOTED_STRING" 
     "getPropertiesClause"
retrieveProcessVariableClause =  VARIABLE "QUOTED_STRING" 
     "getPropertiesClause"
getPropertiesClause =  GET PROPERTIES "(" "propertyNameList" ")"
getReferenceIconSetClause =  GET ( REF | REFERENCE ) ICONSET
getProcessFlowSCOClause =  ACTIVITIES | ( ( "UNQUOTED_STRING" | 
     DATA_AUDITOR | USER_DEFINED | SUBPROCESS | MAPPING | TRANSFORMATION ) 
     ACTIVITIES ) | TRANSITIONS | PARAMETERS | VARIABLES
getActivityBoundObject =  GET ( REFERENCE | REF )
getActivityTransitionClause =  GET ( INCOMING_TRANSITIONS | 
     OUTGOING_TRANSITIONS )
getActivityParameterClause =  ( GET PARAMETERS )
getActivityParameterPropertiesClause =  PARAMETER "QUOTED_STRING" 
     "getPropertiesClause"
getTransitionActivityClause =  ( SOURCE_ACTIVITY | DESTINATION_ACTIVITY )
propertyNameList =  ( "UNQUOTED_STRING" | BINDING ) { "," ( 
     "UNQUOTED_STRING" | BINDING ) }

Keywords And Parameters

retrieveProcessFlowCommand

Retrieve the details of an existing process flow.

retrieveProcessFlowClause

This clause retrieve the Process Flow.

retrieveActivityClause

This clause retrieves the Activity of a Process Flow.

retrieveTransitionClause

This clause retrieves the Transition of a Process Flow.

retrieveProcessParameterClause

This clause retrieves the Parameter of a Process Flow.

getPropertiesClause

Used to get properties (core, user-defined) for process flow. Valid

properties are shown below:

Base properties for Process Flow, Activity, Transition and Parameter:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: NAME

Business name of a Process Flow

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of a Process Flow

Basic properties for Transition:

Name: TRANSITION_CONDITION

Type: STRING

Valid Values: '', SUCCESS, ERROR, WARNING

Default: '' i.e. Unconditional

Gets the Transition Condition of a Transition

Basic properties for Activity Parameter :

Name: DATATYPE

Type: STRING

Valid Values: INTEGER, FLOAT, DATE, STRING, BOOLEAN

Default: STRING

Gets the datatype of a Activity Parameter

Name: DIRECTION

Type: STRING

Valid Values: IN

Default: IN

Gets the direction of a Activity Parameter

Name: ISLITERALVALUE

Type: STRING

Valid Values: TRUE FALSE

Default: TRUE

Whether the value stored is a literal value or an interpreted value, valid

for PARAMETERS and VARIABLES.

Name: VALUE

Type: STRING

Valid Values: Examples '123', '123.456', 'Jan-08-2003', 'I am String',

'true'

Default: ''

Gets the value of a Activity Parameter

Name: BINDING

Type: STRING

Valid Values: Examples 'PROCESS_PARAM1', 'PROCESS_PARAM2'

Default: ''

Get the name of the process parameter that this parameter is bound to,

empty if not bound.

getProcessFlowSCOClause

For the current process flow, retrieve all activities or only activities of

a specific type.

getActivityBoundObject

Retrieve the name of the object that the current activity refers to,

pertinent to only MAPPING, SUBPROCESS and TRANSFORMATION activities.

getActivityTransitionClause

This clause retrieves all Activities of a Process Flow.

getActivityParameterClause

Retrieve the activity parameters for the current activity.

getActivityParameterPropertiesClause

Retrieve the details of an activity parameter.

getTransitionActivityClause

This clause retrieves all Transitions of a Process Flow.

propertyNameList

A comma delimited set of property names to set.

See Also

OMBRETRIEVE

OMBRETRIEVE PROCESS_FLOW_MODULE

Purpose

Retrieve details of the Process Flow Module.

Prerequisites

Should be in the context of a project.

Syntax

retrieveProcessFlowModuleCommand =  OMBRETRIEVE PROCESS_FLOW_MODULE 
     "QUOTED_STRING" ( "getPropertiesClause" | "getReferenceLocationClause"
      | "getReferenceIconSetClause" )
getPropertiesClause =  GET PROPERTIES "(" "propertyNameList" ")"
getReferenceLocationClause =  GET ( REF | REFERENCE ) LOCATION
getReferenceIconSetClause =  GET ( REF | REFERENCE ) ICONSET
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveProcessFlowModuleCommand

Retrieve the details of an existing process flow module.

getPropertiesClause

Used to get properties (core, user-defined) for process flow module.

Base properties for PROCESS_FLOW_MODULE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: NAME

Business name of a Process Flow Module

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of a Process Flow Module

getReferenceLocationClause

Retrieve the name of the Workflow engine location referenced by this

process flow module.

propertyNameList

Comma separated list of property names. Property names are not in

quotation marks.

See Also

OMBRETRIEVE

OMBRETRIEVE PROCESS_FLOW_PACKAGE

Purpose

Retrieve details of the Process Flow Package.

Prerequisites

Should be in the context of a Process Flow Module.

Syntax

retrieveProcessFlowPackageCommand =  OMBRETRIEVE PROCESS_FLOW_PACKAGE 
     "QUOTED_STRING" ( "getPropertiesClause" | "getReferenceIconSetClause" 
     )
getPropertiesClause =  GET PROPERTIES "(" "propertyNameList" ")"
getReferenceIconSetClause =  GET ( REF | REFERENCE ) ICONSET
propertyNameList =  ( "UNQUOTED_STRING" | BINDING ) { "," ( 
     "UNQUOTED_STRING" | BINDING ) }

Keywords And Parameters

retrieveProcessFlowPackageCommand

Retrieve the details of an existing process flow package.

getPropertiesClause

Used to get properties (core, user-defined) for process flow packages.

Valid properties are shown below:

Basic properties for PROCESS_FLOW_PACKAGE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: NAME

Business name of a Process Flow Package

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of a Process Flow Package

propertyNameList

A comma delimited set of property names to set.

See Also

OMBRETRIEVE

OMBRETRIEVE PROFILE_REFERENCE

Purpose

To retrieve properties of a profile reference.

Prerequisites

In the context of a Data Profile.

Syntax

retrieveProfileReferenceCommand =  OMBRETRIEVE PROFILE_REFERENCE 
     "QUOTED_STRING" ( "retrieveProfileReferenceClause" | 
     "retrieveDataRuleUsageClause" | "retrieveProfileAttributeClause" | 
     "retrieveProfileForeignKeyClause" | "retrieveProfileUniqueKeyClause" |
      "retrieveRowRelationshipClause" | 
     "retrieveFunctionalDependencyClause" )
retrieveProfileReferenceClause =  GET ( "getPropertiesClause" | 
     "getProfileReferenceSCOClause" )
retrieveDataRuleUsageClause =  DATA_RULE_USAGE "QUOTED_STRING" ( GET ( 
     "getPropertiesClause" | GROUPS ) | GROUP "QUOTED_STRING" ( GET ( 
     "getPropertiesClause" | ATTRIBUTES | REF TABLE ) | ATTRIBUTE 
     "QUOTED_STRING" ( GET ( "getPropertiesClause" | REF COLUMN ) ) ) )
retrieveProfileAttributeClause =  PROFILE_ATTRIBUTE "QUOTED_STRING" ( GET (
      "getPropertiesClause" | "getDomainValuesClause" | 
     "getCharPatternValuesClause" | "getWordPatternValuesClause" ) | 
     DOMAIN_VALUE "QUOTED_STRING" ( GET "getPropertiesClause" ) | 
     CHARPATTERN_VALUE "QUOTED_STRING" ( GET "getPropertiesClause" ) | 
     WORDPATTERN_VALUE "QUOTED_STRING" ( GET "getPropertiesClause" ) )
retrieveProfileForeignKeyClause =  PROFILE_FOREIGN_KEY "QUOTED_STRING" ( 
     GET ( "getPropertiesClause" | "getRedundantAttributesForFKClause" | 
     "getReferencingAttributesClause" | "getReferencingUKClauseForFK" ) | 
     REDUNDANT_ATTRIBUTE "QUOTED_STRING" ( GET "getPropertiesClause" ) )
retrieveProfileUniqueKeyClause =  PROFILE_UNIQUE_KEY "QUOTED_STRING" ( GET 
     ( "getPropertiesClause" | "getReferencingAttributesClause" ) )
retrieveRowRelationshipClause =  ROW_RELATIONSHIP "QUOTED_STRING" ( GET ( 
     "getPropertiesClause" | "getReferencingAttributesClause" | 
     "getReferencingUKClauseForRR" ) )
retrieveFunctionalDependencyClause =  FUNCTIONAL_DEPENDENCY "QUOTED_STRING"
      ( GET ( "getPropertiesClause" | "getDeterminantAttributesClause" | 
     "getDependentAttributeClause" ) )
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
getProfileReferenceSCOClause =  PROFILE_ATTRIBUTES | PROFILE_ATTRIBUTE AT 
     POSITION "INTEGER_LITERAL" | PROFILE_FOREIGN_KEYS | 
     PROFILE_UNIQUE_KEYS | DATA_RULE_USAGES | FUNCTIONAL_DEPENDENCIES | 
     ROW_RELATIONSHIPS
getDomainValuesClause =  DOMAIN_VALUES
getCharPatternValuesClause =  CHARPATTERN_VALUES
getWordPatternValuesClause =  WORDPATTERN_VALUES
getRedundantAttributesForFKClause =  REDUNDANT_ATTRIBUTES
getReferencingAttributesClause =  PROFILE_ATTRIBUTES
getReferencingUKClauseForFK =  UNIQUE_KEY
getReferencingUKClauseForRR =  ROW_RELATIONSHIP
getDeterminantAttributesClause =  DETERMINANT_ATTRIBUTES
getDependentAttributeClause =  DEPENDENT_ATTRIBUTE
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveProfileReferenceCommand

This clause retrieves the results of a profile of a source.

retrieveDataRuleUsageClause

This clause retrieves the data rule usages defined or derived for this

particular profile reference.

retrieveProfileForeignKeyClause

This clause retrieves the discovered foreign keys for this particular

profile reference.

retrieveProfileUniqueKeyClause

This clause retrieves the discovered unique keys for this particular

profile reference.

retrieveRowRelationshipClause

This clause retrieves the discovered row relationships for this particular

profile reference.

retrieveFunctionalDependencyClause

This clause retrieves the discovered functional dependencies for this

particular profile reference. The format for discovered functional

dependencies are A->B, where A is the determinant column/s and B is the

dependent column.

getPropertiesClause

This clause retrieves the properties for a particular object.

propertyNameList

Comma separated list of property names. Property names are unquoted.

See Also

OMBRETRIEVE

OMBRETRIEVE PROJECT

Purpose

Retrieve details of the project.

Prerequisites

Should be in the top level context.

Syntax

retrieveProjectCommand =  OMBRETRIEVE PROJECT "QUOTED_STRING" ( 
     "getPropertiesClause" | "getReferenceIconSetClause" )
getPropertiesClause =  GET PROPERTIES "(" "propertyNameList" ")"
getReferenceIconSetClause =  GET ( REF | REFERENCE ) ICONSET
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveProjectCommand

Retrieve the details of a Project

QUOTED_STRING

Name of the existing project or path to the project.

getPropertiesClause

Retrieve a set of properties that is associated with a Project.

Basic properties for PROJECT:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: NAME

Business name of a Project

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of a Project

getReferenceIconSetClause

Retrieve the icon set referenced by this project.

propertyNameList

Comma separated list of property names. Property names are unquoted.

See Also

OMBRETRIEVE

OMBRETRIEVE QUEUE_PROPAGATION

Purpose

Retrieve details of the Queue Propagation.

Prerequisites

Should be in the context of an Advanced Queue.

Syntax

retrieveQPCommand =  OMBRETRIEVE QUEUE_PROPAGATION "QUOTED_STRING" ( GET 
     "getQPPropertiesClause" )
getQPPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveQPCommand

Retrieves the details of the Queue Propagation with the given name.

getQPPropertiesClause

Retrieves the values of the given Properties for the Queue Propagation with

the given name.

Basic properties for QUEUE_PROPAGATION:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Queue Propagation

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Queue Propagation

Name: TARGET_QUEUE

Type: STRING(4000)

Valid Values: N/A

Default: ''

Target Queue for the Queue Propagation. This has to be the name of a Queue

existing in any Oracle Module.

Properties for QUEUE_PROPAGATION:

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those objects marked as Deployable = true.

Name: DURATION

Type: STRING

Valid Values: N/A

Default: ''

The duration of proagation to be done. The default value is null.Applicable

only for non-streams queue propagation.

Name: GENERATE_DBLINK

Type: BOOLEAN

Valid Values: true, false

Default: true

Generate script for Database Link which is used for propagation

Name: GENERATE_QUEUE_PROPAGATION

Type: BOOLEAN

Valid Values: true, false

Default: true

Generate script for Queue Propagation

Name: GENERATE_REPLICATION_RULE

Type: BOOLEAN

Valid Values: true, false

Default: false

Generate Ruleset and Rule for Replication purpose in Streams queue

propagation

Name: GENERATE_SCHEDULE_PROPAGATION

Type: BOOLEAN

Valid Values: true, false

Default: true

Generate script for Scheduling propagation. Applicable only for non-streams

queue propagation.

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Name: LATENCY

Type: STRING

Valid Values: N/A

Default: 60

The latency for the queue propagation. By default the value is

60.Applicable only for non-streams queue propagation.

Name: NEXT_TIME

Type: STRING

Valid Values: N/A

Default: ''

Next time when the propagation to be done. The default value is

null.Applicable only for non-streams queue propagation.

Name: NOT_PERMITTED_TAG_VALUES

Type: STRING

Valid Values: N/A

Default: ''

List of comma separated Tag values (in Hex numbers) which are not allowed

for propagation

Name: PERMITTED_TAG_VALUES

Type: STRING

Valid Values: N/A

Default: ''

List of comma separated Tag values (in Hex numbers) which are allowed for

propagation

Name: START_TIME

Type: STRING

Valid Values: N/A

Default: SYSDATE

The start time for the propagation to happen. The default value is

SYSDATE.Applicable only for non-streams queue propagation.

Name: SUBCRIBER_TRANSFORMATION

Type: STRING

Valid Values: N/A

Default: ''

A Transformation that will be applied before propagation to the target

queue. Applicable only for non-streams queue propagation.

Name: SUBSCRIBER_RULE_CONDITION

Type: STRING

Valid Values: N/A

Default: ''

A Rule condition to check whether the message can be propagated to the

subscriber. Applicable only for non-streams queue propagation.

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

propertyNameList

The list of properties.

See Also

OMBRETRIEVE, OMBALTER QUEUE_PROPAGATION, OMBCREATE QUEUE_PROPAGATION, OMBDROP QUEUE_PROPAGATION

OMBRETRIEVE QUEUE_TABLE

Purpose

Retrieve details of the Queue Table.

Prerequisites

Should be in the context of an Oracle Module.

Syntax

retrieveQTCommand =  OMBRETRIEVE QUEUE_TABLE "QUOTED_STRING" ( GET 
     "getQTPropertiesClause" )
getQTPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveQTCommand

Retrieves the details of the Queue Table with the given name.

getQTPropertiesClause

Retrieves the values of the given Properties for the Queue Table with the

given name.

Basic properties for QUEUE_TABLE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Queue Table

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Queue Table

Name: PAYLOAD_TYPE

Type: STRING(4000)

Valid Values: N/A

Default: ''

Object Type for the Queue Table. This has to be the name of an Object Type

(OBJECT_TYPE) existing in any Oracle Module.

Properties for QUEUE_TABLE:

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.QUEUETABLES.DEFAULT.DEPLOYABLE:DESCRIPTION"

Name: GENERATE_QUEUE_TABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.QUEUETABLES.GENERATEQUEUETABLE:DESCRIPTION"

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Name: TABLESPACE

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.QUEUETABLES.TABLESPACE:DESCRIPTION"

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

propertyNameList

The list of properties.

See Also

OMBRETRIEVE, OMBALTER QUEUE_TABLE, OMBCREATE QUEUE_TABLE, OMBDROP QUEUE_TABLE

OMBRETRIEVE REAL_TIME_MAPPING

Purpose

Retrieve Real Time mapping details such as the number of operators and their connections.

Prerequisites

The current context must be in an Oracle Module.

Syntax

retrieveRealTimeMappingCommand =  OMBRETRIEVE REAL_TIME_MAPPING 
     "mappingName" ( "retrieveOperatorOwnerDetailClause" | 
     "testConnectionClause" )
mappingName =  "QUOTED_STRING"
retrieveOperatorOwnerDetailClause =  GET ( PROPERTIES "propertyKeyList" | 
     "getReferenceIconSetClause" | [ "operatorType" ] OPERATORS [ 
     "connectionConditionClause" ] | "childType" ) | "getChildDetailClause"
      | "operatorLocator" "getOperatorDetailClause"
testConnectionClause =  HAS CONNECTION FROM "mappableBottomUpLocator" TO 
     "mappableBottomUpLocator"
propertyKeyList =  "(" "propertyKey" { "," "propertyKey" } ")"
getReferenceIconSetClause =  ( REF | REFERENCE ) ICONSET
operatorType =  PLUGGABLE_MAPPING | "UNQUOTED_STRING"
connectionConditionClause =  CONNECTED ( FROM "mappableBottomUpLocator" | 
     TO "mappableBottomUpLocator" )
childType =  "UNQUOTED_STRING"
getChildDetailClause =  ( "childType" "childName" )+ GET ( PROPERTIES 
     "propertyKeyList" | "childType" )
operatorLocator =  [ "pluggableMapLocator" ] OPERATOR "operatorName"
getOperatorDetailClause =  GET ( PROPERTIES "propertyKeyList" | [ 
     "groupDirection" ] GROUPS [ "connectionConditionClause" ] | 
     BOUND_OBJECT | "childType" ) | "getChildDetailClause" | "groupLocator"
      "getGroupDetailClause"
mappableBottomUpLocator =  "operatorBottomUpLocator" | 
     "groupBottomUpLocator" | "attributeBottomUpLocator"
propertyKey =  "UNQUOTED_STRING"
childName =  "QUOTED_STRING"
pluggableMapLocator =  ( PLUGGABLE_MAPPING "pluggableMapName" [ 
     "pluggableMapLocator" ] )
operatorName =  "QUOTED_STRING"
groupDirection =  INPUT | OUTPUT | INPUT_OUTPUT
groupLocator =  GROUP "groupName"
getGroupDetailClause =  GET ( PROPERTIES "propertyKeyList" | ATTRIBUTES [ 
     "connectionConditionClause" ] | "childType" ) | "getChildDetailClause"
      | "attributeLocator" "getAttributeDetailClause"
operatorBottomUpLocator =  OPERATOR "operatorName" [ 
     "pluggableMapBottomUpLocator" ]
groupBottomUpLocator =  GROUP "groupName" OF "operatorBottomUpLocator"
attributeBottomUpLocator =  ATTRIBUTE "attributeName" OF 
     "groupBottomUpLocator"
pluggableMapName =  "QUOTED_STRING"
groupName =  "QUOTED_STRING"
attributeLocator =  ATTRIBUTE "attributeName"
getAttributeDetailClause =  GET ( PROPERTIES "propertyKeyList" | 
     BOUND_OBJECT | "childType" ) | "getChildDetailClause"
pluggableMapBottomUpLocator =  ( OF PLUGGABLE_MAPPING "pluggableMapName" [ 
     "pluggableMapBottomUpLocator" ] )
attributeName =  "QUOTED_STRING"

Keywords And Parameters

mappingName

Name of the mapping.

retrieveOperatorOwnerDetailClause

Retrieve the desired detail of a mapping or a pluggable mapping.

testConnectionClause

Verify if there is a connection between mapping operators, mapping groups

or mapping attributes.

propertyKeyList

The list of property keys.

operatorType

Type of a mapping operator. The following operator types are available:

ADVANCED_QUEUE, AGGREGATOR, ANYDATA_CAST, CONSTANT, CONSTRUCT_OBJECT, CUBE,

DATA_GENERATOR, DEDUPLICATOR, DIMENSION, EXPAND_OBJECT, EXPRESSION,

EXTERNAL_TABLE, FILTER, FLAT_FILE, INPUT_PARAMETER, INPUT_SIGNATURE,

ITERATOROPERATOR, JOINER, KEY_LOOKUP, LCRCAST, LCRSPLITTER, MATCHMERGE,

MATERIALIZED_VIEW, NAME_AND_ADDRESS, OUTPUT_PARAMETER, OUTPUT_SIGNATURE,

PIVOT, PLUGGABLE_MAPPING, POSTMAPPING_PROCESS, PREMAPPING_PROCESS,

SEQUENCE, SET_OPERATION, SORTER, SPLITTER, TABLE, TABLE_FUNCTION,

TRANSFORMATION, UNPIVOT, VIEW.

connectionConditionClause

List objects only if they are connected from or to objects specified in the

connection condition.

childType

Type of a child that belongs to map, mapping operator, mapping group or

mapping attribute.

getChildDetailClause

Get the desired detail of a child object that belongs to the mapping, map

variable, mapping operator, mapping group or mapping attribute.

operatorLocator

Location of a mapping operator.

getOperatorDetailClause

Get the desired detail of a mapping operator.

mappableBottomUpLocator

Location of the object to be bound to a mapping mapping operator or mapping

attribute.

propertyKey

A property key for an object.

Basic properties for MAPPING:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the mapping

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the mapping

Basic properties for OPERATOR:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the operator

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the operator

Basic properties for GROUP:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the group

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the group

Basic properties for ATTRIBUTE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the attribute

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the attribute

Name: DATATYPE

Type: STRING(20)

Valid Values: BINARY_DOUBLE, BINARY_FLOAT, BLOB, CHAR, CLOB, DATE, FLOAT,

INTEGER, INTERVAL DAY TO SECOND, INTERVAL YEAR TO MONTH, NCHAR, NCLOB,

NUMBER, NVARCHAR2, RAW, TIMESTAMP, TIMESTAMP WITH LOCAL TIME ZONE,

TIMESTAMP WITH TIME ZONE, VARHCAR, VARCHAR2, XMLTYPE

Default: ''

Datatype of the Attribute

Name: LENGTH

Type: NUMBER

Valid Values: N/A

Default: 0

Length of the attribute.

Name: PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

Precision of the attribute.

Name: SCALE

Type: NUMBER

Valid Values: N/A

Default: 0

Scale of the attribute.

Name: FRACTIONAL_SECONDS_PRECISION

Type: NUMBER

Valid Values: 0 - 9

Default: 0

The precision of a timestamp or interval.

Properties for MAPPING:

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

True if the map is deployable to a physical implementation

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Name: GENERATION_LANGUAGE

Type: STRING

Valid Values: ABAP, PLSQL, SQLLOADER, UNDEFINED

Default: UNDEFINED

The language used when generating code for the mapping.

Name: REFERRED_CALENDAR

Type: STRING

Valid Values: N/A

Default: ''

Enter the Schedule to associate with this object.

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Properties for GROUP:

Name: COMMANDTYPE

Type: STRING

Valid Values: ALL_COMMAND_TYPES, DELETE, INSERT, UPDATE

Default: ALL_COMMAND_TYPES

The operation causing the change described by the LCR

Name: DEFAULT_EXPIRATION_TIME_OF_OPEN_RECORD

Type: STRING

Valid Values: N/A

Default: NULL

A date value to be served as the expiration time of a newly created open

record.

Name: DIMENSION_KEY

Type: STRING(32)

Valid Values: N/A

Default: ''

The column in which dimension key value is to be stored when this is a

target of star schema.

Name: EXPRESSION_INOUT

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: EXPRESSION_OUT

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: EXTRACTING_TYPE

Type: STRING

Valid Values: FROM_ALL, FROM_CURRENT

Default: FROM_CURRENT

The extracting operation to be performed when this is a source. If Extract

Current Only (Type 2 Only) is specified, only current records will be

extracted. If Extract All is specified, all records will be extracted.

Name: GROUP_TYPE

Type: STRING

Valid Values: REF_CURSOR, SCALAR

Default: SCALAR

This property specifies whether the input parameter is a scalar or a ref

cursor type

Name: INTERNAL_TABLE

Type: STRING

Valid Values: N/A

Default: ''

Internal staging table for this operator group

Name: LEVEL_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The bound name of this level.

Name: MODULENAME

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: PARAMETER_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The position of the argument in the table function signature corresponding

to this parameter group

Name: RECORD_TYPE_VALUES

Type: STRING

Valid Values: N/A

Default: ''

Record Type Values.

Name: RETURN_TABLE_OF_SCALAR

Type: BOOLEAN

Valid Values: true, false

Default: false

This property specifies whether the return of the table function is a TABLE

of SCALAR or not.

Name: ROW_LOCATOR

Type: STRING

Valid Values: N/A

Default: ''

An expression indicating which attribute within the input group is the row

locator.

Name: ROW_LOCATOR_VALUES

Type: STRING

Valid Values: N/A

Default: NULL, NULL

A comma-separated expressions that gives the possible values of the row

locator within a unpivot group.

Name: SLOWLY_CHANGING_TYPE

Type: STRING

Valid Values: TYPE1, TYPE2, TYPE3

Default: TYPE2

The slowly changing type of this target.

Name: SPLIT_CONDITION

Type: STRING

Valid Values: N/A

Default: ''

Condition that defines when to perform the attribute maps for the

attributes in this group.

Name: TABLENAME

Type: STRING

Valid Values: N/A

Default: ''

The source table corresponding to the LCR

Name: TARGET_TABLE_NAME

Type: STRING(32)

Valid Values: N/A

Default: ''

The table name bound to this target.

Properties for ATTRIBUTE:

Name: ADDRESS_TYPE

Type: STRING

Valid Values: NA_ADDRTYPE_DUAL, NA_ADDRTYPE_NORMAL

Default: NA_ADDRTYPE_NORMAL

You can designate an address type as Normal or Dual. For example, a dual

address occurs when a record contains both a street address and a P.O. Box;

this is common with business data. A normal address contains only one type

of address.

Name: ATTRIBUTE_ROLE

Type: STRING

Valid Values: END_DATE, LOOKUP_ACTIVE_DATE, MEASURE, NATURAL_KEY, NONE,

PARENT_NATURAL_KEY, PARENT_REF_KEY, PARENT_SURROGATE_KEY, PREV_VALUE,

START_DATE, SURROGATE_KEY, TRIGGER

Default: NONE

The type of role to indicate how this attribute will be used in history

logging. History As Previous Value indicates that this attribute will be

used to keep previous value. Surrogate Identifier indicates that this

attribute will be used to keep the surrogate identifier. Natural Identifier

indicates that this attribute will be used to keep the natural identifier.

Effective Time indicates that this attribute will be used as the effective

time of the version. Expiration Time indicates that this attribute will be

used as the expiration time of the version. Trigger indicates that this

attribute will be used to trigger history logging. If none is specified,

this attribute will be used to keep current value.

Name: BINDING_COLUMN_NAME

Type: STRING

Valid Values: N/A

Default: ''

The binding column name for this attribute

Name: DATA_TYPE

Type: STRING

Valid Values: N/A

Default: ''

The data type of the attribute

Name: DEFAULT_VALUE

Type: STRING

Valid Values: N/A

Default: ''

The Default Value for the function input parameter

Name: DIMENSION_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The dimension attribute referenced to by this level attribute.

Name: EXPRESSION

Type: STRING

Valid Values: N/A

Default: ''

The output expression for the attribute

Name: FIELD_DATA_TYPE

Type: STRING

Valid Values: BYTEINT, CHAR, DATE, DECIMAL, DECIMAL EXTERNAL, DOUBLE,

FLOAT, FLOAT EXTERNAL, GRAPHIC, GRAPHIC EXTERNAL, INTEGER, INTEGER

EXTERNAL, INTEGER UNSIGNED, INTERVAL DAY TO SECOND, INTERVAL YEAR TO MONTH,

LONG VARRAW, RAW, SMALLINT, SMALLINT UNSIGNED, TIMESTAMP, TIMESTAMP WITH

LOCAL TIME ZONE, TIMESTAMP WITH TIME ZONE, VARCHAR, VARCHARC, VARGRAPHIC,

VARRAW, VARRAWC, ZONED, ZONED EXTERNAL

Default: CHAR

SQL Data Type of the field in the file to which this operator is bound.

Name: FIELD_DATA_TYPE_LENGTH

Type: NUMBER

Valid Values: N/A

Default: 0

Field Length of the field in the file to which this operator is bound.

Name: FIELD_DATA_TYPE_PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

Field Precision of the field in the file to which this operator is bound.

Name: FIELD_DATA_TYPE_SCALE

Type: NUMBER

Valid Values: N/A

Default: 0

Field Scale of the field in the file to which this operator is bound.

Name: FIELD_DEFAULTIF_VALUE

Type: STRING

Valid Values: N/A

Default: ''

The expression that indicates the value of the field is blank or zero,

based on the datatype.

Name: FIELD_END_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The ending position of the field in the file

Name: FIELD_MASK

Type: STRING

Valid Values: N/A

Default: ''

The mask for the field

Name: FIELD_NULLIF_VALUE

Type: STRING

Valid Values: N/A

Default: ''

The expression that indicates the value of the field is null

Name: FIELD_START_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The starting position of the field in the file

Name: FRACTIONAL_SECONDS_PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

The data fractional seconds precision value of the attribute

Name: FUNCTION_RETURN

Type: BOOLEAN

Valid Values: true, false

Default: false

Specifies whether this output is the return value of this function

Name: GROUP_KEY

Type: BOOLEAN

Valid Values: true, false

Default: false

A boolean value to indicate whether this input attribute is a part of the

unpivot group key.

Name: INPUT_ROLE

Type: STRING

Valid Values: NA_ADDRESS, NA_ADDRESS2, NA_CITY, NA_COUNTRYCODE,

NA_COUNTRYNAME, NA_FIRMNAME, NA_FIRSTNAME, NA_FIRSTPARTNAME, NA_LASTLINE,

NA_LASTLINE_2, NA_LASTNAME, NA_LASTPARTNAME, NA_LINE1, NA_LINE10, NA_LINE2,

NA_LINE3, NA_LINE4, NA_LINE5, NA_LINE6, NA_LINE7, NA_LINE8, NA_LINE9,

NA_LOCALITYNAME, NA_LOCALITY_2, NA_LOCALITY_3, NA_LOCALITY_4,

NA_MIDDLENAME, NA_MIDDLENAME2, NA_MIDDLENAME3, NA_NEIGHBORHOOD, NA_NONE,

NA_PASSTHRU, NA_PERSON, NA_PERSON2, NA_PERSON3, NA_POSTALCODE, NA_POSTNAME,

NA_PRENAME, NA_PRIMARYADDRESS, NA_SECONDARYADDRESS, NA_STATE

Default: NA_NONE

Assigns a name-address input role to the selected input attribute

Name: INSTANCE

Type: STRING

Valid Values: NA_INSTANCE_FIFTH, NA_INSTANCE_FIRST, NA_INSTANCE_FOURTH,

NA_INSTANCE_SECOND, NA_INSTANCE_SIXTH, NA_INSTANCE_THIRD

Default: NA_INSTANCE_FIRST

The instance option is used when an address contains multiple names, you

can specify which name in the group should be used. In addition, you can

use this option to assign an address type to a miscellaneous address

component.

Name: IS_CAST_TARGET

Type: BOOLEAN

Valid Values: true, false

Default: false

Description not available.

Name: IS_OPTIONAL

Type: BOOLEAN

Valid Values: true, false

Default: false

If true, the input is not required to be connected

Name: IS_PREDEFINED_CONSTANT

Type: BOOLEAN

Valid Values: true, false

Default: false

Description not available.

Name: LENGTH

Type: NUMBER

Valid Values: N/A

Default: 0

The data length value of the attribute

Name: LEVEL_ATTRIBUTE_COLNAME_NAME

Type: STRING

Valid Values: N/A

Default: ''

Column name in the AW staging table and source view for this attribute.

Name: LEVEL_ATTRIBUTE_LEVEL_INDICATOR_COLNAME

Type: STRING

Valid Values: N/A

Default: ''

Level indicating columns name. This level will contain the name of the name

of the level this parent reference belongs to. This is relavant only for

skip level hierarchies.

Name: LEVEL_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name of the Level Attribute.

Name: LEVEL_RELATIONSHIP_NAME

Type: STRING

Valid Values: N/A

Default: ''

The level relationship name associated to this attribute.

Name: LOAD_COLUMN_WHEN_INSERTING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will particiate in the

insert load operation.

Name: LOAD_COLUMN_WHEN_UPDATING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will particiate in the

update load operation.

Name: LOOKUP_ATTRIBUTE_ROLE

Type: STRING

Valid Values: DIMENSION_KEY, END_DATE, NATURAL_KEY, NONE, PREV_VALUE,

START_DATE, SURROGATE_KEY, TRIGGER

Default: NONE

The type of role to indicate how this attribute will be used in history

logging. History As Previous Value indicates that this attribute will be

used to keep previous value. Surrogate Identifier indicates that this

attribute will be used to keep the surrogate identifier. Natural Identifier

indicates that this attribute will be used to keep the natural identifier.

Effective Time indicates that this attribute will be used as the effective

time of the version. Expiration Time indicates that this attribute will be

used as the expiration time of the version. Trigger indicates that this

attribute will be used to trigger history logging. If none is specified,

this attribute will be used to keep current value.

Name: MATCHING_ROW

Type: NUMBER

Valid Values: 1 - 1000

Default: 1

An positive integer to indicate from which row within the unpivot group

this output attribute obtains its data.

Name: MATCH_COLUMN_WHEN_DELETING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will be used to

construct the matching criteria between the incoming data and the existing

data on the target during the delete load operation.

Name: MATCH_COLUMN_WHEN_UPDATING_ROW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether this attribute will be used to

construct the matching criteria between the incoming data and the existing

data on the target during the update load operation.

Name: MERGE_ATTR

Type: STRING

Valid Values: N/A

Default: ''

Related merge attribute

Name: OUTPUT_COMPONENT

Type: STRING

Valid Values: NA_ADDRESS, NA_ADDRESS2, NA_ADDRESSCORRECTED, NA_ADDRESSTYPE,

NA_AUTO_ZONE_IND, NA_BOXNAME, NA_BOXNUMBER, NA_BUILDINGNAME, NA_CART,

NA_CBSA_CODE, NA_CBSA_DESC, NA_CENSUSID, NA_CHECKDIGIT, NA_CITY,

NA_CITYCORRECTED, NA_CITYMATCH, NA_CITYWARNING, NA_CITY_ABBREV,

NA_CITY_ABBREV_2, NA_CITY_ALTERNATE, NA_COMPLEX, NA_COUNTRYCODE,

NA_COUNTRYCODE3, NA_COUNTRYNAME, NA_COUNTYNAME, NA_DELIVERYBEATCODE,

NA_DELIVERYOFFICECODE, NA_DELIVERYPOINT, NA_EMAIL, NA_EXTRA_1, NA_EXTRA_10,

NA_EXTRA_11, NA_EXTRA_12, NA_EXTRA_13, NA_EXTRA_14, NA_EXTRA_15,

NA_EXTRA_16, NA_EXTRA_17, NA_EXTRA_18, NA_EXTRA_19, NA_EXTRA_2,

NA_EXTRA_20, NA_EXTRA_3, NA_EXTRA_4, NA_EXTRA_5, NA_EXTRA_6, NA_EXTRA_7,

NA_EXTRA_8, NA_EXTRA_9, NA_FIPS, NA_FIPSCOUNTY, NA_FIPS_PLACE_CODE,

NA_FIRMCOUNT, NA_FIRMNAME, NA_FIRM_LOC, NA_FIRSTNAME, NA_FIRSTNAMESTD,

NA_GENDER, NA_GEO_MATCH_PREC, NA_INSTALLATIONNAME, NA_INSTALLATIONTYPE,

NA_ISADDRESSVERIFIABLE, NA_ISFOUND, NA_ISGOODADDRESS, NA_ISGOODGROUP,

NA_ISGOODNAME, NA_ISPARSED, NA_LACS, NA_LASTLINE, NA_LASTLINE_2,

NA_LASTNAME, NA_LATITUDE, NA_LOCALITYCODE, NA_LOCALITYNAME, NA_LOCALITY_2,

NA_LOCALITY_3, NA_LOCALITY_4, NA_LONGITUDE, NA_LOT, NA_LOT_ORDER, NA_MCD,

NA_MIDDLENAME, NA_MIDDLENAME2, NA_MIDDLENAME2STD, NA_MIDDLENAME3,

NA_MIDDLENAME3STD, NA_MIDDLENAMESTD, NA_MISCADDRESS, NA_MSA,

NA_NAMEDESIGNATOR, NA_NAMEWARNING, NA_NAME_FIRM_EXTRA, NA_NEIGHBORHOOD,

NA_NONAMBIGUOUSMATCH, NA_NONE, NA_NP_SEC_ADDR, NA_NP_UNIT_DESIG,

NA_NP_UNIT_NBR, NA_OTHERPOSTNAME, NA_PARSESTATUS, NA_PARSESTATUSDESC,

NA_PARSINGCOUNTRY, NA_PASSTHRU, NA_PERSON, NA_PERSONCOUNT, NA_PHONE,

NA_POSTALCODE, NA_POSTALCODECORRECTED, NA_POSTALCODEFORMATTED,

NA_POSTDIRECTIONAL, NA_POSTNAME, NA_PREDIRECTIONAL, NA_PRENAME,

NA_PRIMARYADDRESS, NA_PRIM_NAME_2, NA_RELATIONSHIP, NA_ROUTENAME,

NA_ROUTENUMBER, NA_SECONDARYADDRESS, NA_SSN, NA_STATE,

NA_STREETCOMPCORRECTED, NA_STREETCOMPMATCH, NA_STREETCORRECTED,

NA_STREETNAME, NA_STREETNAMEMATCH, NA_STREETNUMBER, NA_STREETNUMBERMATCH,

NA_STREETTYPE, NA_STREETWARNING, NA_TITLE, NA_UNITDESIGNATOR,

NA_UNITNUMBER, NA_URBANIZATIONNAME, NA_URBAN_IND, NA_ZIP4, NA_ZIP5

Default: NA_NONE

Assigns a Name and Address output component to the selected output

attribute.

Name: PARAMETER_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

The position of the argument in the table function signature corresponding

to this parmater

Name: PIVOT_EXPRESSION

Type: STRING

Valid Values: N/A

Default: ''

A comma-separated expression that gives the input attribute to be used for

each output row in the pivot group.

Name: PRECISION

Type: NUMBER

Valid Values: N/A

Default: 0

The data precision value of the attribute

Name: REFERENCED_LEVEL_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The bound name of the parent level attribute associated to this attribute.

Name: REFERENCED_LEVEL_NAME

Type: STRING

Valid Values: N/A

Default: ''

The bound name of the parent level group associated to this attribute.

Name: REFERENCING_TYPE

Type: STRING

Valid Values: LOOKUP_KEY, NONE, REFERENCE_KEY_ALL, REFERENCE_KEY_ONLY

Default: NONE

The type of reference to indicate how this attribute participates in

resolving existing level relationships and level implementations. If Lookup

Reference Attribute is specified, this attribute will be used as lookup

attribute upon parent level to resolve level implementations during

loading. If Level Relationship Attribute (Snowflake) is specified, this

attribute will be directly used as level relationship attribute and no

lookup upon parent level would be performed during loading. If Level

Relationship Attribute (Star) is specified, this attribute will be directly

used as level relationship attribute, as well as lookup attribute upon

parent level to resolve level implementations during loading. If none is

specified, this attribute does not participate in any level relationship.

Name: SCALE

Type: NUMBER

Valid Values: N/A

Default: 0

The data scale value of the attribute

Name: SKIP_LEVEL_DIMENSION

Type: STRING

Valid Values: NO, YES

Default: NO

Indicates whether this level has a skip level parent.

Name: TYPE_ATTRIBUTE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name of the field of the PLS Record or attribute of the Object Type or

column of the ROWTYPE that corresponds to this attribute. This property is

not applicable if the return type is TABLE of SCALAR.

Name: UNPIVOT_EXPRESSION

Type: STRING

Valid Values: N/A

Default: NULL

An expression that gives the input attribute to be used as the output of

this attribute.

Name: UPDATE_OPERATION

Type: STRING(3)

Valid Values: +=, -=, =, =-, =||, ||=

Default: =

The computation to be performed on this attribute between the incoming data

and the existing data on the target during the update load operation.

Name: VALUETYPE

Type: STRING

Valid Values: NEW, NEW_OLD, OLD

Default: NEW_OLD

Specifies the value type of this attribute

Properties for AGGREGATOR_OPERATOR:

Name: GROUP_BY_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

The Group By clause for the aggregation

Name: HAVING_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

The Having clause for the aggregation

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Properties for CONSTRUCT_OBJECT_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Properties for CUBE_OPERATOR:

Name: ALLOW_PARALLEL_SOLVE

Type: BOOLEAN

Valid Values: true, false

Default: false

If true, allow parallel solve when solving the cube.

Name: AW_STAGED_LOAD

Type: BOOLEAN

Valid Values: true, false

Default: false

If true, the set-based AW load data is staged into a temporary table before

loading into the AW.

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: CUBE_STORAGE_ISAW

Type: STRING

Valid Values: NO, YES

Default: NO

Indicates whether the storage for this cube in AW.

Name: DIMENSION_AWNAME

Type: STRING

Valid Values: N/A

Default: ''

AW Name which contains this Dimension.

Name: INCREMENTAL_AGGREGATION

Type: BOOLEAN

Valid Values: true, false

Default: true

Indicates whether incremental aggregation should be done or full

aggregation.

Name: LOADING_TYPE

Type: STRING

Valid Values: LOAD, REMOVE

Default: LOAD

The loading operation to be performed when this is a target. If LOAD is

specified, OWB will try to insert all input data into target. If REMOVE is

specified, OWB will try to match between the input data and target data to

compute existing data; it will then remove existing data from target.

Name: MAX_JOB_QUEUES_ALLOCATED

Type: NUMBER

Valid Values: 1 - 1000

Default: 0

The maximum number of job queues allocated when solving the cube.

Name: RUN_AGGREGATION

Type: STRING

Valid Values: NO, YES

Default: YES

A boolean value to indicate whether to solve the cube or not . Specify YES

and cube data will be precomputed for the levels specified in the

definition of cube

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Name: TRUNCATE_LOAD

Type: BOOLEAN

Valid Values: true, false

Default: false

The truncate flag to indicate whether all existing dimension values should

be truncated before load begins (AW only).

Properties for DEDUPLICATOR_OPERATOR:

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Properties for DIMENSION_OPERATOR:

Name: AW_LOAD_MODEL

Type: STRING

Valid Values: OTHER, SNOWFLAKE, STAR

Default: SNOWFLAKE

The loading model for the AW dimension - star, snowflake, or other.

Name: AW_STAGED_LOAD

Type: BOOLEAN

Valid Values: true, false

Default: false

If true, the set-based AW load data is staged into a temporary table before

loading into the AW.

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: DEFAULT_EFFECTIVE_TIME_OF_OPEN_RECORD

Type: STRING

Valid Values: N/A

Default: SYSDATE

A date value to be served as the effective time of a newly created open

record. The same date value is also served as the expiration time to close

an existing open record.

Name: DEFAULT_EXPIRATION_TIME_OF_OPEN_RECORD

Type: STRING

Valid Values: N/A

Default: NULL

A date value to be served as the expiration time of a newly created open

record.

Name: DIMENSION_AWNAME

Type: STRING

Valid Values: N/A

Default: ''

AW Name which contains this Dimension.

Name: DIMENSION_ISAW

Type: STRING(3)

Valid Values: NO, YES

Default: YES

Flag to indicate whether storage is AW.

Name: LOADING_TYPE

Type: STRING

Valid Values: LOAD, REMOVE

Default: LOAD

The loading operation to be performed when this is a target. If LOAD is

specified, OWB will try to match between the input data and target data to

compute new data and existing data; it will then create new data, as well

as modify existing data onto target. If REMOVE is specified, OWB will try

to match between the input data and target data to compute existing data;

it will then remove existing data from target.

Name: SLOWLY_CHANGING_TYPE

Type: STRING

Valid Values: TYPE1, TYPE2, TYPE3

Default: TYPE2

The slowly changing type of this target.

Name: SURROGATE_IDENTIFIER_LOADING_POLICY

Type: STRING

Valid Values: N/A

Default: ''

The name of the sequence used to generate surrogate key values when loading

the dimension.

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Name: TRUNCATE_LOAD

Type: BOOLEAN

Valid Values: true, false

Default: false

The truncate flag to indicate whether all existing dimension values should

be truncated before load begins (AW only).

Name: TYPE2_MATCH_CURRENT_ONLY

Type: STRING

Valid Values: NO, YES

Default: YES

If set to YES, only the current record will be used when performing the

selected operation (remove or extract) for type 2 dimension.

Name: TYPE2_RECORD_GAP_INTERVAL

Type: NUMBER

Valid Values: N/A

Default: 1

A numeric value indicating the number of units (see

TYPE2_RECORD_GAP_INTERVAL_UNITS property below) that will be added to the

expiration date of the previous closed record, to create the effective date

of a new open record.

Name: TYPE2_RECORD_GAP_INTERVAL_UNITS

Type: STRING

Valid Values: DAYS, HOURS, MINUTES, SECONDS, WEEKS

Default: SECONDS

A value indicating the units used for the gap that will be added to the

expiration date of the previous closed record, to create the effective date

of a new open record.

Properties for EXPAND_OBJECT_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Properties for EXTERNAL_TABLE_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: DATABASE_FILE_NAME

Type: STRING

Valid Values: N/A

Default: ''

Database file name to allocate extents from

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DATA_COLLECTION_FREQUENCY

Type: STRING(16)

Valid Values: DAY, HOUR, MINUTE, MONTH, QUARTER, UNKNOWN, YEAR

Default: UNKNOWN

New Data Granularity

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: DIRECT

Type: BOOLEAN

Valid Values: true, false

Default: false

Directly swap source into target as a partition without first creating a

staging table.

Name: ENABLE_CONSTRAINTS

Type: BOOLEAN

Valid Values: true, false

Default: true

Enable Constraints

Name: ERROR_SELECT_FILTER

Type: STRING(3)

Valid Values: NO, YES

Default: YES

Rows selected from the error table will contain only errors created by this

operator in this map execution

Name: ERROR_SELECT_ROLL_UP

Type: STRING(3)

Valid Values: NO, YES

Default: YES

'Records selected from the error table will be rolled up by the error name,

so all errors generated by a particular input record will be rolled up into

a single record with the error names concatenated in the error name

attribute.

Name: ERROR_TABLE_NAME

Type: STRING(32)

Valid Values: N/A

Default: ''

The error table name of this target to log invalid records.

Name: EVALUATE_CHECK_CONSTRAINTS

Type: BOOLEAN

Valid Values: true, false

Default: false

Evaluate check constraints

Name: EXCEPTIONS_TABLE_NAME

Type: STRING

Valid Values: N/A

Default: ''

Exceptions Table Name

Name: EXTRACTION_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when extracting from this table using SQL

Name: LOADING_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when loading into this table using SQL

Name: PARTITION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Partition Name

Name: PEL_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

PEL Enabled

Name: PRIMARY_SOURCE

Type: STRING

Valid Values: NO, YES

Default: NO

A boolean value to indicate whether this is a primary source or not (only

used in EDW).

Name: RECORDS_TO_SKIP

Type: NUMBER

Valid Values: >= 0

Default: 0

Number of records to skip

Name: REPLACE_DATA

Type: BOOLEAN

Valid Values: true, false

Default: false

Replace existing data in target partition if there is any.

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: SINGLEROW

Type: BOOLEAN

Valid Values: true, false

Default: false

Singlerow

Name: SORTED_INDEXES_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

Sorted Indexes Clause

Name: SUBPARTITION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Subpartition Name

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Name: TRAILING_NULLCOLS

Type: BOOLEAN

Valid Values: true, false

Default: false

Trailing Nullcols

Name: TRUNCATE_ERROR_TABLE

Type: STRING(3)

Valid Values: NO, YES

Default: NO

If YES, then the error table will be truncated prior to use. This is

ignored if there are no active data rules applied to the object.

Properties for FILTER_OPERATOR:

Name: FILTER_CONDITION

Type: STRING

Valid Values: N/A

Default: ''

The boolean filtering condition that identifies what data is to be

processed. Any row with a false condition will be ignored.

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Properties for FLAT_FILE_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by reconciliation for this item. Unlike other

operators, it is not needed for generation. By default it is the same name

as the item.

Name: CONCATENATE_RECORDS

Type: NUMBER

Valid Values: N/A

Default: 0

Number of Physical Records per Logical Record.

Name: CONTINUATION_CHARACTER

Type: STRING

Valid Values: N/A

Default: ''

Character that indicates the record is continued on the next line.

Name: CONTINUATION_CHARACTER_ON_NEXT_LINE

Type: BOOLEAN

Valid Values: true, false

Default: FALSE

If there is a continuation character, is it at the start of the line.

Name: FIELD_ENCLOSURE_CHARACTERS

Type: STRING

Valid Values: N/A

Default: ''

Characters that wrap fields. Example ' or ".

Name: FIELD_NAMES_IN_THE_FIRST_ROW

Type: BOOLEAN

Valid Values: true, false

Default: FALSE

Indicates whether file contains a header row.

Name: FIELD_TERMINATION_CHARACTER

Type: STRING

Valid Values: N/A

Default: ,

Character that separates the fields of a delimited file.

Name: FILE_FORMAT

Type: STRING

Valid Values: DELIMITED, FIXED

Default: DELIMITED

File Format (Fixed or Delimited).

Name: LOADING_TYPE

Type: STRING(16)

Valid Values: INSERT, NONE, UPDATE

Default: INSERT

The loading operation to be performed

Name: OUTPUT_AS_XML

Type: BOOLEAN

Valid Values: true, false

Default: false

Output data to file in XML format.

Name: RECORD_DELIMITER

Type: STRING

Valid Values: N/A

Default: ''

Character that indicates the end of the record.

Name: RECORD_SIZE

Type: NUMBER

Valid Values: N/A

Default: 0

Size of a fixed length record.

Name: RECORD_TYPE_LENGTH

Type: NUMBER

Valid Values: N/A

Default: 0

If this is a multi record file, this will indicate the length of the data

that identifies the type of record. It is used with the Record Type

Position.

Name: RECORD_TYPE_POSITION

Type: NUMBER

Valid Values: N/A

Default: 0

If this is a multi record file, this will indicate the position of the

field that identifies the type of record.

Name: SAMPLED_FILE_NAME

Type: STRING

Valid Values: N/A

Default: ''

The default name of the physical file to be used by sqlloader. If the file

was sampled, the default was set from sampled file name.

Name: SOURCE_DATA_FILE_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The Location of the File Module of this Flat File at the time of

reconciliation. Stored as UOID.

Name: TARGET_DATA_FILE_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access referenced entity.

Name: TARGET_DATA_FILE_NAME

Type: STRING

Valid Values: N/A

Default: ''

Name of the target data file, including extension (file type). This name

should not include the file path. To specify where the target data file

will be created/appended, set the Target Data File Location.

Properties for ITERATOR_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Properties for JOINER_OPERATOR:

Name: JOIN_CONDITION

Type: STRING

Valid Values: N/A

Default: ''

The Join Condition for the join operator

Properties for KEY_LOOKUP_OPERATOR:

Name: BOUND_LEVEL

Type: STRING

Valid Values: N/A

Default: ''

The level name of the bound level, if this is a dimension lookup.

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: CREATE_NO_MATCH_ROW

Type: BOOLEAN

Valid Values: true, false

Default: true

If true, a row is created and the user-defined default values are used, in

the case where no lookup match is found. If false, no row is produced.

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: EXTRACTION_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when extracting from this table using SQL

Name: LOOKUP_CONDITION

Type: STRING

Valid Values: N/A

Default: ''

Key lookup condition based on the source inputs. This condition is used to

lookup a value in the bound table. If the condition is not met, the

default value expression will be returned. If a default expression is not

defined, null is used.

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Name: TYPE2_HISTORY_LOOKUP_DATE

Type: STRING

Valid Values: N/A

Default: ''

A date expression used when doing a lookup on a type 2 dimension level, to

specify the historical date for which to retrieve data. If blank, the most

current record is used.

Properties for LCRCAST_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Properties for MATCHMERGE_OPERATOR:

Name: MATCH_KEYS

Type: STRING

Valid Values: N/A

Default: ''

Ordered list of attributes that control the set of records to be matched at

any at any particular time.

Name: MATCH_NEW_RECORDS

Type: BOOLEAN

Valid Values: true, false

Default: false

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"MATCHMERGE.GENERAL.MATCH_NEW_RECORDS:DESCRIPTION"

Name: MATCH_NEW_RECORD_CONDITION

Type: STRING

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"MATCHMERGE.GENERAL.MATCH_NEW_RECORD_CONDITION:DESCRIPTION"

Name: MERGED_PREFIX

Type: STRING

Valid Values: N/A

Default: ''

Set the prefix used for the merged attributes in the cross-reference group.

Properties for MATERIALIZED_VIEW_OPERATOR:

Name: ADVANCED_MATCH_BY_CONSTRAINT

Type: STRING

Valid Values: N/A

Default: NO_CONSTRAINTS

This property is used by public API and scripting to influence how columns

are used for UPDATE or DELETE DMLs. If this property is set with the name

of a primary or unique key, all the columns in the key will be used for

matching during UPDATE or DELETE; and all the columns not in the key are

used for loading. The property can also be assigned the value "All

constraints" or "No constraints". If the DML type is INSERT,

TRUNCATE/INSERT, or CHECK/INSERT, setting this property causes no effect.

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: ERROR_SELECT_FILTER

Type: STRING(3)

Valid Values: NO, YES

Default: YES

Rows selected from the error table will contain only errors created by this

operator in this map execution

Name: ERROR_SELECT_ROLL_UP

Type: STRING(3)

Valid Values: NO, YES

Default: YES

'Records selected from the error table will be rolled up by the error name,

so all errors generated by a particular input record will be rolled up into

a single record with the error names concatenated in the error name

attribute.

Name: ERROR_TABLE_NAME

Type: STRING(32)

Valid Values: N/A

Default: ''

The error table name of this target to log invalid records.

Name: EXTRACTION_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when extracting from this table using SQL

Name: LOADING_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when loading into this table using SQL

Name: LOADING_TYPE

Type: STRING(16)

Valid Values: CHECK_INSERT, DELETE, DELETE_INSERT, DERIVE_FROM_LCR, INSERT,

INSERT_UPDATE, NONE, TRUNCATE_INSERT, UPDATE, UPDATE_INSERT

Default: INSERT

The loading operation to be performed when this is a target.

Name: MATCH_BY_CONSTRAINT

Type: STRING

Valid Values: N/A

Default: ALL_CONSTRAINTS

A property to indicate whether unique or primary key information on this

target will override the matching criteria obtained from Match by

constraint property on the attributes of this target.

Name: PRIMARY_SOURCE

Type: STRING

Valid Values: NO, YES

Default: NO

A boolean value to indicate whether this is a primary source or not (only

used in EDW).

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: TARGET_FILTER_FOR_DELETE

Type: STRING

Valid Values: N/A

Default: ''

A condition on the rows in the target and if evaluated to true, that row

will participate in the delete loading operation.

Name: TARGET_FILTER_FOR_UPDATE

Type: STRING

Valid Values: N/A

Default: ''

A condition on the rows in the target and if evaluated to true, that row

will participate in the update loading operation.

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Name: TRUNCATE_ERROR_TABLE

Type: STRING(3)

Valid Values: NO, YES

Default: NO

If YES, then the error table will be truncated prior to use. This is

ignored if there are no active data rules applied to the object.

Properties for NAME_AND_ADDRESS_OPERATOR:

Name: ADDRESS_LINE_1

Type: STRING

Valid Values: N/A

Default: ''

Address line 1

Name: ADDRESS_LINE_2

Type: STRING

Valid Values: N/A

Default: ''

Address line 2

Name: ADDRESS_LINE_3

Type: STRING

Valid Values: N/A

Default: ''

Address line 3

Name: ADDRESS_LINE_4

Type: STRING

Valid Values: N/A

Default: ''

Address line 4

Name: DUAL_ADDRESS_ASSIGNMENT

Type: STRING

Valid Values: NA_DUALADDR_CLOSESTTOLASTLINE, NA_DUALADDR_POBOX,

NA_DUALADDR_STREET

Default: NA_DUALADDR_STREET

A dual address refers to two address lines for the same destination. For

example, a record contains both a street address and a P.O. Box; this is

common with business data. Select which of the two address lines should be

assigned in these cases.

Name: GENERATE_CASS_REPORT

Type: STRING

Valid Values: NA_NO, NA_YES

Default: NA_NO

Select "Yes" to generate CASS (Coding Accuracy Support System) report. CASS

report is a text file specified by the United States Postal Service. The

report is written to the [nas/bin/admin/reports] folder under the home

folder of the name/address server.

Name: LIST_NAME

Type: STRING

Valid Values: N/A

Default: ''

The list name is optional and provides a reference for tracking multiple

CASS reports.

Name: PARSING_TYPE

Type: STRING

Valid Values: NA_ADDRESSONLY, NA_NAMEANDADDRESS, NA_NAMEONLY

Default: NA_NAMEANDADDRESS

Select a name-address parsing type to be performed on the input data

Name: PRIMARY_COUNTRY

Type: STRING

Valid Values: NA_AND, NA_ARE, NA_ARG, NA_AUS, NA_AUT, NA_BEL, NA_BGD,

NA_BGR, NA_BHS, NA_BLZ, NA_BMU, NA_BRA, NA_BRB, NA_BRN, NA_CAN, NA_CHE,

NA_CHL, NA_CHN, NA_COL, NA_CZE, NA_DEU, NA_DNK, NA_EGY, NA_ESP, NA_EST,

NA_FIN, NA_FRA, NA_GBR, NA_GRC, NA_GUM, NA_HKG, NA_HUN, NA_ICL, NA_IND,

NA_IRL, NA_IRN, NA_IRQ, NA_ISR, NA_ITA, NA_JAM, NA_JOR, NA_JPN, NA_KHM,

NA_KOR, NA_LIE, NA_LTU, NA_LUX, NA_LVA, NA_MEX, NA_MYS, NA_NLD, NA_NOR,

NA_NZL, NA_PAK, NA_PER, NA_PHL, NA_POL, NA_PRT, NA_ROM, NA_RUS, NA_SGP,

NA_SVN, NA_SWE, NA_THA, NA_UKR, NA_USA, NA_VEN, NA_YUG, NA_ZAF

Default: NA_USA

Select the primary parsing country which best represents the input data.

Input addresses having the same country as the primary parsing country will

only need to be parsed once. Input addresses having a different country

than the primary parsing country may be reparsed by a different parser. For

performance reasons, it is best to minimize the percentage of 2-pass parses

by selecting the optimal parser.

Name: PROCESSOR_NAME

Type: STRING

Valid Values: N/A

Default: ''

The processor name is the name of the organization submitting the CASS

report.

Properties for PIVOT_OPERATOR:

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Name: PIVOT_GROUP_SIZE

Type: NUMBER

Valid Values: 1 - 1000

Default: 2

A number specifying the pivot group size for the pivot operation. Pivot

group size determines the number of output rows that are produced from each

input row.

Properties for PLUGGABLE_MAPPING_OPERATOR:

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Properties for POSTMAPPING_PROCESS_OPERATOR:

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: FUNCTION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Name of the transformation to be called.

Name: POSTMAPPING_PROCESS_RUN_CONDITION

Type: STRING(10)

Valid Values: ALWAYS, ON_ERROR, ON_SUCCESS, ON_WARNING

Default: ON_SUCCESS

Indicates under what condition of the mapping the post-mapping process will

be run.

Name: ROW-BASED_ONLY

Type: BOOLEAN

Valid Values: true, false

Default: false

Indicates if this transformation must be used only Row Based mode. Some

transformations can be used in SQL mode as well as Row Based mode.

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Properties for PREMAPPING_PROCESS_OPERATOR:

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: FUNCTION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Name of the transformation to be called.

Name: MAPPING_RUN_CONDITION

Type: STRING(10)

Valid Values: ALWAYS, ON_ERROR, ON_SUCCESS

Default: ON_SUCCESS

Indicates under what condition of the pre-mapping process the mapping will

be run.

Name: ROW-BASED_ONLY

Type: BOOLEAN

Valid Values: true, false

Default: false

Indicates if this transformation must be used only Row Based mode. Some

transformations can be used in SQL mode as well as Row Based mode.

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Properties for QUEUE_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: REAL_TIME_DATA_FORMAT

Type: STRING

Valid Values: LOGICAL_CHANGE_RECORD, MESSAGE

Default: LOGICAL_CHANGE_RECORD

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"ADVANCEDQUEUE.DEFAULT.REALTIMEFORMAT:DESCRIPTION"

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Properties for SEQUENCE_OPERATOR:

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Properties for SET_OPERATION_OPERATOR:

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Name: SET_OPERATION

Type: STRING

Valid Values: INTERSECT, MINUS, UNION, UNIONALL

Default: UNION

Specifies the set operation that is to be performed by this operator.

Properties for SORTER_OPERATOR:

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Name: ORDER_BY_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

The Order By Clause

Properties for SPLITTER_OPERATOR:

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Properties for TABLE_FUNCTION_OPERATOR:

Name: TABLE_FUNCTION_IS_TARGET

Type: BOOLEAN

Valid Values: true, false

Default: false

Description not available.

Name: TABLE_FUNCTION_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name of the Table Function

Properties for TABLE_OPERATOR:

Name: ADVANCED_MATCH_BY_CONSTRAINT

Type: STRING

Valid Values: N/A

Default: NO_CONSTRAINTS

This property is used by public API and scripting to influence how columns

are used for UPDATE or DELETE DMLs. If this property is set with the name

of a primary or unique key, all the columns in the key will be used for

matching during UPDATE or DELETE; and all the columns not in the key are

used for loading. The property can also be assigned the value "All

constraints" or "No constraints". If the DML type is INSERT,

TRUNCATE/INSERT, or CHECK/INSERT, setting this property causes no effect.

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: CONFLICT_RESOLUTION

Type: BOOLEAN

Valid Values: true, false

Default: true

Detect and resolve any conflicts that may arise during DML using the LCR

APIs

Name: DATABASE_FILE_NAME

Type: STRING

Valid Values: N/A

Default: ''

Database file name to allocate extents from

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DATA_COLLECTION_FREQUENCY

Type: STRING(16)

Valid Values: DAY, HOUR, MINUTE, MONTH, QUARTER, UNKNOWN, YEAR

Default: UNKNOWN

New Data Granularity

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: DIRECT

Type: BOOLEAN

Valid Values: true, false

Default: false

Directly swap source into target as a partition without first creating a

staging table.

Name: ENABLE_CONSTRAINTS

Type: BOOLEAN

Valid Values: true, false

Default: true

Enable Constraints

Name: ERROR_SELECT_FILTER

Type: STRING(3)

Valid Values: NO, YES

Default: YES

Rows selected from the error table will contain only errors created by this

operator in this map execution

Name: ERROR_SELECT_ROLL_UP

Type: STRING(3)

Valid Values: NO, YES

Default: YES

'Records selected from the error table will be rolled up by the error name,

so all errors generated by a particular input record will be rolled up into

a single record with the error names concatenated in the error name

attribute.

Name: ERROR_TABLE_NAME

Type: STRING(32)

Valid Values: N/A

Default: ''

The error table name of this target to log invalid records.

Name: EVALUATE_CHECK_CONSTRAINTS

Type: BOOLEAN

Valid Values: true, false

Default: false

Evaluate check constraints

Name: EXCEPTIONS_TABLE_NAME

Type: STRING

Valid Values: N/A

Default: ''

Exceptions Table Name

Name: EXTRACTION_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when extracting from this table using SQL

Name: JOINRANK

Type: FLOAT

Valid Values: N/A

Default: 0

Join Rank

Name: LOADING_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when loading into this table using SQL

Name: LOADING_TYPE

Type: STRING(16)

Valid Values: CHECK_INSERT, DELETE, DELETE_INSERT, DERIVE_FROM_LCR, INSERT,

INSERT_UPDATE, NONE, TRUNCATE_INSERT, UPDATE, UPDATE_INSERT

Default: INSERT

The loading operation to be performed when this is a target.

Name: MATCH_BY_CONSTRAINT

Type: STRING

Valid Values: N/A

Default: ALL_CONSTRAINTS

A property to indicate whether unique or primary key information on this

target will override the matching criteria obtained from Match by

constraint property on the attributes of this target.

Name: PARTITION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Partition Name

Name: PEL_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

PEL Enabled

Name: PRIMARY_SOURCE

Type: STRING

Valid Values: NO, YES

Default: NO

A boolean value to indicate whether this is a primary source or not (only

used in EDW).

Name: RECORDS_TO_SKIP

Type: NUMBER

Valid Values: >= 0

Default: 0

Number of records to skip

Name: REPLACE_DATA

Type: BOOLEAN

Valid Values: true, false

Default: false

Replace existing data in target partition if there is any.

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: SINGLEROW

Type: BOOLEAN

Valid Values: true, false

Default: false

Singlerow

Name: SORTED_INDEXES_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

Sorted Indexes Clause

Name: SUBPARTITION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Subpartition Name

Name: TARGET_FILTER_FOR_DELETE

Type: STRING

Valid Values: N/A

Default: ''

A condition on the rows in the target and if evaluated to true, that row

will participate in the delete loading operation.

Name: TARGET_FILTER_FOR_UPDATE

Type: STRING

Valid Values: N/A

Default: ''

A condition on the rows in the target and if evaluated to true, that row

will participate in the update loading operation.

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Name: TRAILING_NULLCOLS

Type: BOOLEAN

Valid Values: true, false

Default: false

Trailing Nullcols

Name: TRUNCATE_ERROR_TABLE

Type: STRING(3)

Valid Values: NO, YES

Default: NO

If YES, then the error table will be truncated prior to use. This is

ignored if there are no active data rules applied to the object.

Name: USE_LCR_API

Type: BOOLEAN

Valid Values: true, false

Default: true

Use LCR APIs if possible to perform the DML

Properties for TRANSFORMATION_OPERATOR:

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: FUNCTION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Name of the transformation to be called.

Name: IS_TARGET

Type: BOOLEAN

Valid Values: true, false

Default: false

If true, then the function is a target

Name: RETURN_TYPE

Type: STRING

Valid Values: N/A

Default: ''

Description not available.

Name: ROW-BASED_ONLY

Type: BOOLEAN

Valid Values: true, false

Default: false

Indicates if this transformation must be used only Row Based mode. Some

transformations can be used in SQL mode as well as Row Based mode.

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Properties for UNPIVOT_OPERATOR:

Name: INLINEVIEW_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used on inline view when extracting using SQL

Properties for VIEW_OPERATOR:

Name: ADVANCED_MATCH_BY_CONSTRAINT

Type: STRING

Valid Values: N/A

Default: NO_CONSTRAINTS

This property is used by public API and scripting to influence how columns

are used for UPDATE or DELETE DMLs. If this property is set with the name

of a primary or unique key, all the columns in the key will be used for

matching during UPDATE or DELETE; and all the columns not in the key are

used for loading. The property can also be assigned the value "All

constraints" or "No constraints". If the DML type is INSERT,

TRUNCATE/INSERT, or CHECK/INSERT, setting this property causes no effect.

Name: BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

The name to be used by the code generator to identify this item. By default

it is the same physical name as the item.

Name: DATABASE_FILE_NAME

Type: STRING

Valid Values: N/A

Default: ''

Database file name to allocate extents from

Name: DATABASE_LINK

Type: STRING(128)

Valid Values: N/A

Default: ''

The database link used to access this entity during mapping.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

The location used to access this entity during mapping.

Name: DEBUG_BOUND_NAME

Type: STRING

Valid Values: N/A

Default: ''

Physical name used to bind to a physical entity during a debug session

Name: DEBUG_DB_LOCATION

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"8i.MAPPING.ENTITY.DEBUGGERPARAMS.LOCATION:DESCRIPTION"

Name: ERROR_SELECT_FILTER

Type: STRING(3)

Valid Values: NO, YES

Default: YES

Rows selected from the error table will contain only errors created by this

operator in this map execution

Name: ERROR_SELECT_ROLL_UP

Type: STRING(3)

Valid Values: NO, YES

Default: YES

'Records selected from the error table will be rolled up by the error name,

so all errors generated by a particular input record will be rolled up into

a single record with the error names concatenated in the error name

attribute.

Name: ERROR_TABLE_NAME

Type: STRING(32)

Valid Values: N/A

Default: ''

The error table name of this target to log invalid records.

Name: EXTRACTION_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when extracting from this table using SQL

Name: LOADING_HINT

Type: STRING

Valid Values: N/A

Default: ''

Hint used when loading into this table using SQL

Name: LOADING_TYPE

Type: STRING(16)

Valid Values: CHECK_INSERT, DELETE, DELETE_INSERT, DERIVE_FROM_LCR, INSERT,

INSERT_UPDATE, NONE, TRUNCATE_INSERT, UPDATE, UPDATE_INSERT

Default: INSERT

The loading operation to be performed when this is a target.

Name: MATCH_BY_CONSTRAINT

Type: STRING

Valid Values: N/A

Default: ALL_CONSTRAINTS

A property to indicate whether unique or primary key information on this

target will override the matching criteria obtained from Match by

constraint property on the attributes of this target.

Name: PARTITION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Partition Name

Name: PRIMARY_SOURCE

Type: STRING

Valid Values: NO, YES

Default: NO

A boolean value to indicate whether this is a primary source or not (only

used in EDW).

Name: RECORDS_TO_SKIP

Type: NUMBER

Valid Values: >= 0

Default: 0

Number of records to skip

Name: ROW_COUNT

Type: STRING

Valid Values: N/A

Default: ''

Row count

Name: ROW_COUNT_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: false

Row count enabled

Name: SCHEMA

Type: STRING(30)

Valid Values: N/A

Default: ''

Schema

Name: SINGLEROW

Type: BOOLEAN

Valid Values: true, false

Default: false

Singlerow

Name: SORTED_INDEXES_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

Sorted Indexes Clause

Name: SUBPARTITION_NAME

Type: STRING

Valid Values: N/A

Default: ''

Subpartition Name

Name: TARGET_FILTER_FOR_DELETE

Type: STRING

Valid Values: N/A

Default: ''

A condition on the rows in the target and if evaluated to true, that row

will participate in the delete loading operation.

Name: TARGET_FILTER_FOR_UPDATE

Type: STRING

Valid Values: N/A

Default: ''

A condition on the rows in the target and if evaluated to true, that row

will participate in the update loading operation.

Name: TARGET_LOAD_ORDER

Type: STRING(65535)

Valid Values: N/A

Default: ''

The Target Load Order property allows you to determine the order in which

multiple targets within the same mapping get loaded. Warehouse Builder

determines a default order based on the FK relationships. However, using

the property you can overrule that default order.

Name: TEST_DATA_COLUMN_LIST

Type: STRING

Valid Values: N/A

Default: ''

Column list for test data VIEW for this source or target

Name: TEST_DATA_WHERE_CLAUSE

Type: STRING

Valid Values: N/A

Default: ''

WHERE clause for test data VIEW for this source or target

Name: TRAILING_NULLCOLS

Type: BOOLEAN

Valid Values: true, false

Default: false

Trailing Nullcols

Name: TRUNCATE_ERROR_TABLE

Type: STRING(3)

Valid Values: NO, YES

Default: NO

If YES, then the error table will be truncated prior to use. This is

ignored if there are no active data rules applied to the object.

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

childName

Name of a child that belongs to map, mapping operator, mapping group or

mapping attribute.

pluggableMapLocator

Location of a child pluggable mapping within a mapping or another pluggable

mapping.

operatorName

Name of a mapping operator.

groupDirection

Direction of a mapping group.

groupLocator

Location of a mapping group.

getGroupDetailClause

Get the desired detail of a mapping group.

operatorBottomUpLocator

Location of a mapping operator.

groupBottomUpLocator

Location of a mapping group.

attributeBottomUpLocator

Location of a mapping attribute.

pluggableMapName

Name of the pluggable map.

groupName

Name of a mapping group.

attributeLocator

Location of a mapping attribute.

getAttributeDetailClause

Get the desired detail of a mapping attribute.

pluggableMapBottomUpLocator

Location of a child pluggable mapping within a mapping or another pluggable

mapping.

attributeName

Name of a mapping attribute.

See Also

OMBRETRIEVE, OMBCREATE REAL_TIME_MAPPING, OMBALTER REAL_TIME_MAPPING, OMBDROP REAL_TIME_MAPPING

OMBRETRIEVE REGISTERED_FUNCTION

Purpose

Retrieve details of a function.

Prerequisites

Should be in the context of a Business Definition Module or use the full

path.

Syntax

retrieveRegisteredFunctionCommand =  OMBRETRIEVE REGISTERED_FUNCTION 
     "QUOTED_STRING" ( "retrieveFunctionClause" | 
     "retrieveFunctionArgClause" )
retrieveFunctionClause =  GET ( "getPropertiesClauseforRegFun" | 
     "getReferenceIconSetClause" | "getFunctionSCOClause" )
retrieveFunctionArgClause =  PARAMETER "QUOTED_STRING" GET 
     "getPropertiesClause"
getPropertiesClauseforRegFun =  PROPERTIES "(" "propertyNameListforRegFun" 
     ")"
getReferenceIconSetClause =  ( REF | REFERENCE ) ICONSET
getFunctionSCOClause =  PARAMETERS | DERIVATION_SOURCE
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
propertyNameListforRegFun =  ( "UNQUOTED_STRING" | ( PACKAGE | SIGNATURE ) 
     ) { "," ( "UNQUOTED_STRING" | ( PACKAGE | SIGNATURE ) ) }
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveRegisteredFunctionCommand

To retrieve a function.

QUOTED_STRING

name of the function.

retrieveFunctionClause

Retrieves the contents of the function.

GET

For registered function this clause retrieves the following

PARAMETERS retrieves the list of parameters owned by this registered

function.

DERIVATION_SOURCE retrieves the component that the registered function was

derived from.

retrieveFunctionArgClause

Retrieves properties of the function parameter.

getPropertiesClauseforRegFun

Retrieves the properties of the object.

getReferenceIconSetClause

Get specified Icon Set.

getFunctionSCOClause

Retrieves the parameters of the function.

getPropertiesClause

Retrieves the properties of the object.

Basic properties for REGISTERED_FUNCTION:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the function

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the function

Name: AVAILABLE

Type: Boolean

Valid Values: Y,N

Default: 'N'

Whether the Function is available for the user to use in calculations

Name: RETURN_TYPE

Type: STRING()

Valid Values: BINARY_INTEGER, BLOB, BOOLEAN, CHAR, CLOB, DATE, FLOAT,

INTEGER, INTERVAL DAY TO SECOND, INTERVAL YEAR TO MONTH

NCHAR, NCLOB, NUMBER, NVARCHAR2, PLS_INTEGER, RAW, SYS.ANYDATA,

SYS.ROW_LCR, SYS_REFCURSOR, TIMESTAMP, TIMESTAMP WITH LOCAL TIME ZONE

TIMESTAMP WITH TIME ZONE, VARCHAR, VARCHAR2, XMLTYPE, SYS.XMLFORMAT,

BLAST_ALIGN_PLSQLRECORDTYPE

SYS.LCR$_ROW_RECORD, BLAST_SQL_TABLE_OF_NUMBERS, SYS.XMLSEQUENCETYPE,

BLAST_MATCH_PLSQLRECORDTYPE

Default: 'NUMBER'

Return type of the function

Basic properties for PARAMETER:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the parameter

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the parameter

Name: DATATYPE

Type: STRING()

Valid Values: BINARY_INTEGER, BLOB, BOOLEAN, CHAR, CLOB, DATE, FLOAT,

INTEGER, INTERVAL DAY TO SECOND, INTERVAL YEAR TO MONTH

NCHAR, NCLOB, NUMBER, NVARCHAR2, PLS_INTEGER, RAW, SYS.ANYDATA,

SYS.ROW_LCR, SYS_REFCURSOR, TIMESTAMP, TIMESTAMP WITH LOCAL TIME ZONE

TIMESTAMP WITH TIME ZONE, VARCHAR, VARCHAR2, XMLTYPE, SYS.XMLFORMAT,

BLAST_ALIGN_PLSQLRECORDTYPE

SYS.LCR$_ROW_RECORD, BLAST_SQL_TABLE_OF_NUMBERS, SYS.XMLSEQUENCETYPE,

BLAST_MATCH_PLSQLRECORDTYPE

Default: 'NUMBER'

Datatype of the parameter

Properties for REGISTERED_FUNCTION:

Name: AUTHID

Type: STRING

Valid Values: Current_User, Definer, None

Default: None

Generate the transformation with selected AUTHID option. Function will be

executed with the permissions defined by the AUTHID clause rather than the

function owner's permissions.

Name: DB_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

Location for the referenced Function

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Name: PACKAGE

Type: STRING

Valid Values: N/A

Default: ''

May be used to identify the name of a Package that contains the Function

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

propertyNameListforRegFun

This is the list of property names.

propertyNameList

This is the list of property names.

See Also

OMBALTER REGISTERED_FUNCTION, OMBCREATE REGISTERED_FUNCTION

OMBRETRIEVE ROLE

Purpose

To retrieve properties of a Warehouse Builder role.

Prerequisites

Must be connected to a workspace on OWB repository.

Syntax

retrieveRoleCommand =  OMBRETRIEVE ROLE "QUOTED_STRING" ( GET 
     "getPropertiesClause" )
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")" 
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveRoleCommand

This clause retrieves properties of a Warehouse Builder role.

getPropertiesClause

Basic properties for ROLE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the role

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the role

See Also

OMBCREATE ROLE, OMBALTER ROLE, OMBDROP ROLE

OMBRETRIEVE SAP_MODULE

Purpose

Retrieve details of the SAP module.

Prerequisites

You must open a project to retrieve a SAP module.

Syntax

retrieveSAPModuleCommand =  OMBRETRIEVE SAP_MODULE "QUOTED_STRING" ( 
     "getPropertiesClause" | "getReferenceLocationClause" | 
     "getReferenceDefaultLocationClause" | 
     "getReferenceMetadataLocationClause" | "getReferenceIconSetClause" | 
     "getReferenceLocationsClause" )
getPropertiesClause =  GET PROPERTIES "(" "propertyNameList" ")"
getReferenceLocationClause =  GET ( REF | REFERENCE ) LOCATION
getReferenceDefaultLocationClause =  GET ( REF | REFERENCE ) DEFAULT 
     LOCATION
getReferenceMetadataLocationClause =  GET ( REF | REFERENCE ) 
     METADATA_LOCATION
getReferenceIconSetClause =  GET ( REF | REFERENCE ) ICONSET
getReferenceLocationsClause =  GET ( REF | REFERENCE ) LOCATIONS
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveSAPModuleCommand

Retrieve the details of an SAP Module

getPropertiesClause

Retrieve a set of properties that is associated with an SAP Module.

Base properties for SAP_MODULE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: NAME

Business name of a SAP Module

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of an SAP Module

getReferenceLocationClause

Retrieve the name of the runtime location referenced by this SAP module.

getReferenceDefaultLocationClause

Retrieve the default runtime location referenced by this SAP module.

getReferenceMetadataLocationClause

Retrieve the metadata location referenced by this SAP module.

getReferenceIconSetClause

Retrieve the icon set referenced by this SAP module.

getReferenceLocationsClause

Retrieve the runtime locations referenced by this SAP module.

propertyNameList

Comma separated list of property names. Property names are unquoted.

See Also

OMBRETRIEVE

OMBRETRIEVE SEQUENCE

Purpose

To retrieve properties of a sequence.

Prerequisites

In the context of an Oracle Module

Syntax

retrieveSequenceCommand =  OMBRETRIEVE SEQUENCE "QUOTED_STRING" ( GET ( 
     "getPropertiesClause" | "getReferenceIconSetClause" ) | 
     "retrieveColumnClause" )
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
getReferenceIconSetClause =  ( REF | REFERENCE ) ICONSET
retrieveColumnClause =  COLUMN "QUOTED_STRING" GET "getPropertiesClause"
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveSequenceCommand

This clause retrieves properties of a sequence.

getPropertiesClause

This clause retrieves all the properties.

Basic properties for SEQUENCE:

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the sequence.

Name: CURRVAL

Type: NUMBER

Valid Values: N/A

Default: 1

current increment value.

Name: NEXTVAL

Type: NUMBER

Valid Values: N/A

Default: 1

next increment value. next increment value.

Properties for SEQUENCE:

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Description not available.

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Name: INCREMENT_BY

Type: NUMBER

Valid Values: -2147483648 - 2147483647

Default: 1

Description not available.

Name: START_WITH

Type: NUMBER

Valid Values: -2147483648 - 2147483647

Default: 1

Description not available.

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

retrieveColumnClause

This clause will retrieve columns.

QUOTED_STRING

Name of the column.

propertyNameList

The list of properties.

See Also

OMBRETRIEVE, OMBCREATE SEQUENCE, OMBALTER SEQUENCE, OMBDROP SEQUENCE

OMBRETRIEVE SNAPSHOT

Purpose

Since the snapshot may contain many components, this command lets the user view all the contents in a snapshot.

Prerequisites

Snapshot contents can be retrieved from any context.

Syntax

parseRetrieveCommand =  OMBRETRIEVE "retrieveSnapshotCommand"
retrieveSnapshotCommand =  ( SNAPSHOT "QUOTED_STRING" [ GET 
     "getPropertiesClause" ] )
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

parseRetrieveCommand

Root production of OMBRETRIEVE SNAPSHOT.

retrieveSnapshotCommand

To view contents of snapshot.

QUOTED_STRING

Name of snapshot whose contents are to be retrieved.

getPropertiesClause

Gets the property of snapshot which are DESCRIPTION, TYPE.

Basic properties for SNAPSHOT:

Name: TYPE

Type: STRING(200)

Valid Values: FULL,SIGNATURE

Default: FULL

This is the type of snapshot

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the snapshot

PROPERTIES

Valid set of properties are DESCRIPTION and TYPE.

propertyNameList

Property names for SNAPSHOT that can be retrieved.

See Also

OMBCREATE SNAPSHOT, OMBALTER SNAPSHOT, OMBDROP SNAPSHOT, OMBRESTORE SNAPSHOT, OMBCOMPARE SNAPSHOT, OMBLIST SNAPSHOT

OMBRETRIEVE STREAMS_CAPTURE_PROCESS

Purpose

Retrieve details of the Streams Capture Process.

Prerequisites

Should be in the context of a Streams Queue.

Syntax

retrieveCaptureCommand =  OMBRETRIEVE STREAMS_CAPTURE_PROCESS 
     "QUOTED_STRING" ( GET ( "getCapturePropertiesClause" | TABLES ) )
getCapturePropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveCaptureCommand

Retrieves the details of the Streams Capture Process with the given name.

getCapturePropertiesClause

Get specified properties of the Streams Capture Process

propertyNameList

The list of properties.

Basic properties for STREAMS_CAPTURE_PROCESS:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Streams Capture Process

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Streams Capture

Properties for STREAMS_CAPTURE_PROCESS:

Name: CAPTURE_START_PARAMETER

Type: STRING

Valid Values: START_DATE, START_SCN

Default: START_SCN

This specifies whether the Streams Capture Process should start capturing

changes based on the Start Date or the Start SCN.

Name: CAPTURE_TAGGED_LCR

Type: BOOLEAN

Valid Values: true, false

Default: false

If TRUE, then a redo entry is always considered for capture and an LCR is

always considered for apply, regardless of whether redo entry or LCR has a

non-NULL tag. If FALSE, then a redo entry is considered for capture and an

LCR is considered for apply only when the redo entry or the LCR contains a

NULL tag.

Name: CAPTURE_TIMEOUT

Type: NUMBER

Valid Values: 0 - 1000

Default: 0

The maximum number of seconds to wait for another instance of the same

capture process to finish.

Name: DBA_LOCATION

Type: STRING

Valid Values: N/A

Default: ''

Location of the DBA user who should create the supplemental logs.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Indicates whether the Object is deployable or not.

Name: DISABLE_ON_LIMIT

Type: BOOLEAN

Valid Values: true, false

Default: true

If set to true, the capture process will be disabled once the message/time

limit is reached.

Name: MAXIMUM_SCN

Type: NUMBER

Valid Values: 0 - 1000000000

Default: 0

This is the Maximum SCN value whose corresponding changes will be captured

by the Streams Capture Process.

Name: MESSAGE_COUNT_LIMIT

Type: NUMBER

Valid Values: 0 - 1000

Default: 0

If Disable On Limit is set to true, then the Streams Capture Process is

disabled once the specified number of messages have been captured.

Name: PARALLELISM_DEGREE

Type: NUMBER

Valid Values: 0 - 1000

Default: 0

The number of parallel server process that will mine the redo logs.

Name: START_DATE

Type: STRING

Valid Values: N/A

Default: 1970-01-01

The user specified date from which the Streams Capture Process should start

capturing changes.

Name: START_SCN

Type: NUMBER

Valid Values: N/A

Default: 0

The user specified SCN from which the Streams Capture Process should start

capturing changes.

Name: TIME_LIMIT

Type: NUMBER

Valid Values: 0 - 1000

Default: 0

If Disable On Limit is set to true, then the Streams Capture Process is

disabled once the specified number of seconds elapse.

Name: WRITE_ALERT_LOG

Type: BOOLEAN

Valid Values: true, false

Default: true

If set to true, then the Streams Capture Process writes a message to the

alert log on exit.

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

See Also

OMBRETRIEVE, OMBALTER STREAMS_CAPTURE_PROCESS, OMBCREATE STREAMS_CAPTURE_PROCESS, OMBDROP STREAMS_CAPTURE_PROCESS

OMBRETRIEVE STREAMS_QUEUE

Purpose

Retrieve details of the Streams Queue.

Prerequisites

Should be in the context of an Oracle Module.

Syntax

retrieveANYQCommand =  OMBRETRIEVE STREAMS_QUEUE "QUOTED_STRING" ( GET 
     "getPropertiesClause" )
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveANYQCommand

Retrieves the details of the Streams Queue with the given name.

getPropertiesClause

Retrieves the values of the given Properties for the Streams Queue with the

given name.

Basic properties for ADVANCED_QUEUE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Advanced Queue

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Advanced Queue

Name: QTABLE

Type: STRING(4000)

Valid Values: N/A

Default: ''

Queue Table for the Advanced Queue. This has to be the name of a Queue

Table(QUEUE_TABLE) existing in the same Oracle Module.

Properties for STREAMS_QUEUE:

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.ADVANCEDQUEUES.DEFAULT.DEPLOYABLE:DESCRIPTION"

Name: DEQUEUE_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: true

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.ADVANCEDQUEUES.DEFAULT.DEQUEUEENABLED:DESCRIPTION"

Name: ENQUEUE_ENABLED

Type: BOOLEAN

Valid Values: true, false

Default: true

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.ADVANCEDQUEUES.DEFAULT.ENQUEUEENABLED:DESCRIPTION"

Name: GENERATE_ADVANCED_QUEUE

Type: BOOLEAN

Valid Values: true, false

Default: true

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.ADVANCEDQUEUES.GENERATEAQ:DESCRIPTION"

Name: GENERATE_TEMPORARY_TABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.ADVANCEDQUEUES.GENERATETEMPTABLE:DESCRIPTION"

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Name: MAX_RETRIES

Type: NUMBER

Valid Values: N/A

Default: 5

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.ADVANCEDQUEUES.DEFAULT.MAXRETRIES:DESCRIPTION"

Name: RETENTION_TIME

Type: NUMBER

Valid Values: N/A

Default: 0

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.ADVANCEDQUEUES.DEFAULT.RETENTIONTIME:DESCRIPTION"

Name: RETRY_DELAY

Type: NUMBER

Valid Values: N/A

Default: 0

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.ADVANCEDQUEUES.DEFAULT.RETRYDELAY:DESCRIPTION"

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

propertyNameList

The list of properties.

See Also

OMBRETRIEVE, OMBALTER STREAMS_QUEUE, OMBCREATE STREAMS_QUEUE, OMBDROP STREAMS_QUEUE

OMBRETRIEVE TABLE_FUNCTION

Purpose

Retrieve details of the Table Function.

Prerequisites

Should be in the context of Oracle Module or Package. The REFCursorType and

PLSQLTableType which are set as Datatype for parameters should pre-exist in

corresponding Package.

Syntax

retrieveTableFunctionCommand =  OMBRETRIEVE TABLE_FUNCTION "QUOTED_STRING" 
     ( "retrieveTableFunctionClause" | "retrieveParameterClause" )
retrieveTableFunctionClause =  GET ( "propertiesClauseNoGet" | 
     "getParametersClause" | "getOrderedFieldsClause" | 
     "getPartitionedFieldsClause" | ( REF | REFERENCE ) ICONSET )
retrieveParameterClause =  PARAMETER "QUOTED_STRING" "getPropertiesClause"
propertiesClauseNoGet =  PROPERTIES "(" "propertyNameList" ")"
getParametersClause =  PARAMETERS
getOrderedFieldsClause =  ORDERED_FIELDS
getPartitionedFieldsClause =  PARTITIONED_FIELDS
getPropertiesClause =  GET PROPERTIES "(" "propertyNameList" ")"
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveTableFunctionCommand

Retrieve details regarding a Table Function.

retrieveTableFunctionClause

Retrieve details regarding a Table Function.

retrieveParameterClause

Gets the properties of Parameter with the given name.

propertiesClauseNoGet

Gets the properties of the table function.

getParametersClause

Lists the Parameter names of this Table Function.

getOrderedFieldsClause

Lists the Field names of this Table Function on which the Ordering is to be

done.

getPartitionedFieldsClause

Lists the Field names of this Table Function on which the Partitioning is

to be done.

getPropertiesClause

Gets the properties of the Table Function or any of its Parameter

Basic properties for FUNCTION:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Function

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Function

Name: RETURN_TYPE

Type: STRING

Valid Values: PLS_INTEGER, BINARY_INTEGER, BOOLEAN, NUMBER, FLOAT, CHAR,

VARCHAR, VARCHAR2, DATE

Default: NUMBER

Set the Return Type for Function

Name: IMPLEMENTATION

Type: STRING

Valid Values: N/A

Default: ''

Set the code for Function which is included global variable declaration and

code between BEGIN and END.

Name: IS_DETERMINISTIC

Type: BOOLEAN

Valid Values: true, false

Default: false

This setting helps the optimizer avoid redundant function calls.

Name: IS_PARALLEL_ENABLE

Type: BOOLEAN

Valid Values: true, false

Default: false

This option sets flag to a stored function can be used safely in the slave

sessions of parallel DML evaluations.

Basic properties for PARAMETER:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Parameter

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Parameter

Name: DATATYPE

Type: STRING

Valid Values: BINARY_DOUBLE, BINARY_FLOAT, BINARY_INTEGER, BLOB, BOOLEAN,

CHAR, CLOB, DATE, FLOAT, INTEGER, INTERVAL DAY TO SECOND, INTERVAL YEAR TO

MONTH, NCHAR, NCLOB, NUMBER, NVARCHAR2, PLS_INTEGER, RAW, TIMESTAMP,

TIMESTAMP WITH LOCAL TIME ZONE, TIMESTAMP WITH TIME ZONE, VARHCAR,

VARCHAR2, XMLTYPE

Default: NUMBER

Set the data type for Parameter

Name: IN_OUT

Type: STRING

Valid Values: IN, OUT, INOUT

Default: 'IN'

Set the parameter mode for Parameter

Name: DEFAULT_VALUE

Type: STRING

Valid Values: N/A

Default: ''

Set the default value for Parameter

Properties for TABLE_FUNCTION:

Name: AUTHID

Type: STRING

Valid Values: Current_User, Definer, None

Default: None

Generate the transformation with selected AUTHID option. Function will be

executed with the permissions defined by the AUTHID clause rather than the

function owner's permissions.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

propertyNameList

Comma separated list of property names to retrieve values. Property names

are unquoted.

See Also

OMBRETRIEVE

OMBRETRIEVE TABLE

Purpose

To retrieve properties of a table.

Prerequisites

In the context of an Oracle Module

Syntax

retrieveTableCommand =  OMBRETRIEVE TABLE "QUOTED_STRING" ( 
     "retrieveTableClause" | "retrieveColumnClause" | "retrieveUkPkClause" 
     | "retrieveFkClause" | "retrieveCheckConstraintClause" | 
     "retrievePartitionConfigurationClause" | 
     "retrievePartitionKeyConfigurationClause" | 
     "retrieveTemplateSubpartitionConfigurationClause" | 
     "retrieveSubPartitionConfigurationClause" | 
     "retrieveSubPartitionKeyConfigurationClause" | 
     "retrieveIndexConfigurationClause" | "retrieveDataRuleUsageClause" )
retrieveTableClause =  GET ( "getPropertiesClause" | 
     "getReferenceIconSetClause" | "getTableSCOClause" )
retrieveColumnClause =  COLUMN "QUOTED_STRING" GET "getPropertiesClause"
retrieveUkPkClause =  ( UNIQUE_KEY | PRIMARY_KEY ) "QUOTED_STRING" GET ( 
     "getPropertiesClause" | COLUMNS )
retrieveFkClause =  FOREIGN_KEY "QUOTED_STRING" GET ( "getPropertiesClause"
      | COLUMNS | UNIQUE_KEY | PRIMARY_KEY | REFERENCED_KEY )
retrieveCheckConstraintClause =  CHECK_CONSTRAINT "QUOTED_STRING" GET 
     "getPropertiesClause"
retrievePartitionConfigurationClause =  PARTITION "QUOTED_STRING" GET 
     "getConfigurationPropertiesClause"
retrievePartitionKeyConfigurationClause =  PARTITION_KEY "QUOTED_STRING" 
     GET "getConfigurationPropertiesClause"
retrieveTemplateSubpartitionConfigurationClause =  TEMPLATE_SUBPARTITION 
     "QUOTED_STRING" GET "getConfigurationPropertiesClause"
retrieveSubPartitionConfigurationClause =  SUBPARTITION "QUOTED_STRING" OF 
     PARTITION "QUOTED_STRING" GET "getConfigurationPropertiesClause"
retrieveSubPartitionKeyConfigurationClause =  SUBPARTITION_KEY 
     "QUOTED_STRING" GET "getConfigurationPropertiesClause"
retrieveIndexConfigurationClause =  INDEX "QUOTED_STRING" ( GET ( 
     "getConfigurationPropertiesClause" | INDEX_COLUMNS | INDEX_PARTITIONS 
     | INDEX_PARTITION_KEYS ) | ( INDEX_COLUMN "QUOTED_STRING" GET 
     "getConfigurationPropertiesClause" ) | ( INDEX_PARTITION_KEY 
     "QUOTED_STRING" GET "getConfigurationPropertiesClause" ) | ( 
     INDEX_PARTITION "QUOTED_STRING" GET "getConfigurationPropertiesClause"
      ) )
retrieveDataRuleUsageClause =  DATA_RULE_USAGE "QUOTED_STRING" ( GET ( 
     "getPropertiesClause" | GROUPS ) | GROUP "QUOTED_STRING" ( GET ( 
     "getPropertiesClause" | ATTRIBUTES | REF ( TABLE | VIEW | 
     MATERIALIZED_VIEW | EXTERNAL_TABLE ) ) | ATTRIBUTE "QUOTED_STRING" ( 
     GET ( "getPropertiesClause" | REF COLUMN ) ) ) )
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
getReferenceIconSetClause =  ( REF | REFERENCE ) ICONSET
getTableSCOClause =  COLUMNS | UNIQUE_KEYS | PRIMARY_KEY | FOREIGN_KEYS | 
     CHECK_CONSTRAINTS | COLUMN AT POSITION "INTEGER_LITERAL" | INDEXES | 
     INDEX_PARTITION_KEYS OF INDEX "QUOTED_STRING" | INDEX_PARTITIONS OF 
     INDEX "QUOTED_STRING" | PARTITIONS | SUBPARTITIONS OF PARTITION 
     "QUOTED_STRING" | TEMPLATE_SUBPARTITIONS | PARTITION_KEYS | 
     SUBPARTITION_KEYS | DATA_RULE_USAGES
getConfigurationPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveTableCommand

This clause retrieves a table.

QUOTED_STRING

Name of the table.

retrieveTableClause

This clause retrieves a table.

retrieveColumnClause

This clause will retrieve columns.

QUOTED_STRING

Name of the column.

retrieveUkPkClause

This clause will retrieve a unique key or primary key.

QUOTED_STRING

Name of the unique key or the primary key.

retrieveFkClause

This clause will retrieve a key referenced by a foreign key, either a

unique key or primary key. Use REFERENCED_KEY to retrieve the referenced

key for a foreign key regardless of the type of referenced key (unique or

primary).

QUOTED_STRING

Name of the foreign key.

retrieveCheckConstraintClause

This clause gets the check constraint.

QUOTED_STRING

Name of the check constraint.

retrievePartitionConfigurationClause

Gets the partition.

QUOTED_STRING

The partition name.

retrievePartitionKeyConfigurationClause

This clause gets the partition key.

QUOTED_STRING

The name of the partition key.

retrieveIndexConfigurationClause

Gets the index in this clause.

QUOTED_STRING

Name of the index.

retrieveDataRuleUsageClause

This clause retrieves the data rule usages.

QUOTED_STRING

Name of data rule usage, group or attribute.

GROUPS

Retrieve the names of all relation groups in the data rule usage.

ATTRIBUTES

Retrieve the names of all attributes in a data rule usage group.

TABLE

Table name associated withthe data rule usage group.

VIEW

View name associated withthe data rule usage group.

MATERIALIZED_VIEW

Materialized view name associated with the data rule usage group.

EXTERNAL_TABLE

External table name associated with the data rule usage group.

COLUMN

Column name associated with the data rule usage group attribute.

getPropertiesClause

This clause retrieves all the properties.

Basic properties for TABLE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the table

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the table

Basic properties for COLUMN:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the column

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the column

Name: DATATYPE

Type: STRING

Valid Values: BINARY_DOUBLE, BINARY_FLOAT, BLOB, CHAR, CLOB, DATE, FLOAT,

INTEGER, INTERVAL DAY TO SECOND, INTERVAL YEAR TO MONTH, NCHAR, NCLOB,

NUMBER, NVARCHAR2, RAW, SYS.ANYDATA, SYS.LCR$_ROW_RECORD, SYS.XMLFORMAT,

TIMESTAMP, TIMESTAMP WITH LOCAL TIME ZONE, TIMESTAMP WITH TIME ZONE,

VARHCAR, VARCHAR2, XMLTYPE

Default: NUMBER

The datatype of a column

Name: LENGTH

Type: NUMBER

Valid Values:

Default: 1

The length of a number

Name: PRECISION

Type: NUMBER

Valid Values: 0 - 38

Default: 1

The precision of a number. Use 0 to specify floating-point numbers.

Name: SCALE

Type: NUMBER

Valid Values: -84 - 127

Default: 1

The scale of a number.

Name: FRACTIONAL_SECONDS_PRECISION

Type: NUMBER

Valid Values: 0 - 9

Default: 0

The precision of a timestamp or interval.

Name: DEFAULT_VALUE

Type: STRING

Valid Values: N/A

Default: ''

Default value of the column

Name: NOT_NULL

Type: BOOLEAN

Valid Values: true, false

Default: false

Specify "true" to enforce Not Null restriction on a column.

Basic properties for PARTITION_KEY:

Name: TYPE

Type: STRING

Valid Values: RANGE, LIST, HASH, HASH BY QUANTITY

Default: (No default, must be one of the choices above)

Ask Oracle to partition the table rows according to a Hash Algorithm, lists

of values, or specified ranges.

Name: HASH_QUANTITY

Type: STRING

Valid Values: N/A

Default: '0'

Specify how many HASH partitions the database should create on HASH BY

QUANTITY partitioning. For optimal load balancing you should specify a

number of partitions that is a power of 2. If you have multiple Partition

Keys, you only have to specify once.

Basic properties for PARTITION:

Name: VALUES_LESS_THAN

Type: STRING

Valid Values: N/A

Default: ''

Specify the noninclusive upper bound for the current RANGE partition. The

value list is a comma-delimited, ordered list of literal values

corresponding to the index partitioning column list. Always specify

MAXVALUE(s) as the value(s) of the last partition, and make sure you have

specified PARTITION_KEY(s) before you specify any PARTITION.

Name: VALUES_EQUAL_TO

Type: STRING

Valid Values: N/A

Default: ''

Specify a list of literal values for the current LIST partition. The value

list is a comma-delimited, ordered list of literal values corresponding to

the index partitioning column. Commas can be escaped using "" (e.g.

'1,2,3'). Always specify DEFAULT as the value of the last partition, and

make sure you have specified PARTITION_KEY(s) before you specify any

PARTITION.. Each LIST partition must have at least one value. No value,

including NULL, can appear in more than one partition.

Name: HASH_QUANTITY

Type: STRING

Valid Values: N/A

Default: '0'

Specify how many HASH customized subpartitions the database should create

for a particular main RANGE partition (RANGE-HASH BY QUANTITY

partitioning). For optimal load balancing you should specify a number of

subpartitions that is a power of 2. If you have multiple Subpartition Keys,

you only have to specify once. Set it to 0 to reverse to the use of generic

template HASH_QUANTITY specified in SUBPARTITION_KEY.

Basic properties for SUBPARTITION_KEY:

Name: TYPE

Type: STRING

Valid Values: LIST, HASH, HASH BY QUANTITY

Default: (No default, must be one of the choices above)

For partition-level partitioning according to a Hash Algorithm or lists of

values. Each partition is further sorted into subpartitions.

Name: HASH_QUANTITY

Type: STRING

Valid Values: N/A

Default: '0'

Specify how many HASH subpartitions the database should create on HASH BY

QUANTITY partitioning. For optimal load balancing you should specify a

number of subpartitions that is a power of 2. If you have multiple

Subpartition Keys, you only have to specify once.

Basic properties for SUBPARTITION:

Name: VALUES_EQUAL_TO

Type: STRING

Valid Values: N/A

Default: ''

Specify a list of literal values for the current LIST subpartition. The

value list is a comma-delimited, ordered list of literal values

corresponding to the index partitioning column. Always specify DEFAULT as

the value of the last subpartition, and make sure you have specified

SUBPARTITION_KEY(s) before you specify any SUBPARTITION. Each LIST

subpartition must have at least one value. No value, including NULL, can

appear in more than one subpartition.

Basic properties for TEMPLATE_SUBPARTITION:

Name: VALUES_EQUAL_TO

Type: STRING

Valid Values: N/A

Default: ''

In composite partitioning, template subpartitions are automatically applied

to those partitions without their subpartitions specified. Here for LIST

subpartitions only, specify a comma-delimited, ordered list of literal

values corresponding to the LIST subpartitioning column. Always specify

DEFAULT as the value of the last template LIST subpartition, and and make

sure you have specified SUBPARTITION_KEY(s) before you specify any

TEMPLATE_SUBPARTITION. Each LIST template subpartition must have at least

one value. No value, including NULL, can appear in more than one template

subpartition.

Basic properties for INDEX:

Name: INDEX_TYPE

Type: STRING

Valid Values: UNIQUE, NON-UNIQUE, BITMAP, FUNCTION-BASED

Default: (No default, must be one of the choices above)

Specify the type of an index. NORMAL can be used in place of NON-UNIQUE.

Name: LOCAL_INDEX

Type: BOOLEAN

Valid Values: true, false

Default: false

Specify if an index is Global or Local. The default is Global.

Specify Local so that the index is partitioned on the same columns, with

the same number of partitions and the same partition bounds as table.

Oracle Database automatically maintains local index partitioning as the

underlying table is repartitioned.

Name: COLUMN_EXPRESSION

Type: STRING

Valid Values: N/A

Default: ''

Specify an expression built from columns of table, constants, SQL

functions, and user-defined functions to create a FUNCTION-BASED index.

Basic properties for INDEX_PARTITION_KEY:

Name: TYPE

Type: STRING

Valid Values: RANGE, HASH, HASH BY QUANTITY

Default: (No default, must be one of the choices above)

Ask Oracle to partition the index rows according to a Hash Algorithm, lists

of values, or specified ranges. Hash index partitioning is supported

starting with Oracle 10g version.

Name: HASH_QUANTITY

Type: STRING

Valid Values: N/A

Default: '0'

Specify how many HASH index partitions the database should create based on

HASH BY QUANTITY partitioning. For optimal load balancing you should

specify a number of index partitions that is a power of 2. If you have

multiple index Partition Keys, you only have to specify once.

Basic properties for INDEX_PARTITION:

Name: VALUES_LESS_THAN

Type: STRING

Valid Values: N/A

Default: ''

Specify the noninclusive upper bound for the current RANGE partition in a

global index. The value list is a comma-delimited, ordered list of literal

values corresponding to the index partitioning column list. Always specify

MAXVALUE(s) as the value(s) of the last partition. No need to specify

VALUES_LESS_THAN for Local index.

Name: VALUES_EQUAL_TO

Type: STRING

Valid Values: N/A

Default: ''

Specify a list of literal values for the current LIST partition in a global

index. The value list is a comma-delimited, ordered list of literal values

corresponding to the index partitioning column. Always specify DEFAULT as

the value of the last partition. Each LIST partition must have at least one

value. No value, including NULL, can appear in more than one partition. No

need to specify VALUES_EQUAL_TO for Local index.

Basic properties for CHECK_CONSTRAINTS:

Name: CHECK_CONDITION

Type: STRING

Valid Values: N/A

Default: ''

Specify a condition that each row in the table must satisfy.

Properties for TABLE:

Name: BUFFER_POOL

Type: STRING

Valid Values: , DEFAULT, KEEP, RECYCLE

Default: ''

Specify a default buffer pool (cache) for table or partition object. The

default is DEFAULT.

Name: CACHE_MODE

Type: STRING

Valid Values: , CACHE, NOCACHE

Default: ''

Indicate how Oracle should store blocks in the buffer cache.

Name: DATA_SEGMENT_COMPRESSION

Type: STRING

Valid Values: , COMPRESS, NOCOMPRESS

Default: ''

Use this clause to instruct Oracle whether to compress data segments to

reduce disk use. The default is NOCOMPRESS.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: FREELISTGROUPS

Type: STRING

Valid Values: N/A

Default: ''

Specify the number of groups of free lists for the database object you are

creating. The default is 1.

Name: FREELISTS

Type: STRING

Valid Values: N/A

Default: ''

Specify the number of free lists for each of the free list groups for the

table, partition, cluster, or index. The default is 1.

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Name: INITIAL

Type: STRING

Valid Values: N/A

Default: ''

Specify in bytes the size of the first extent. Use K or M to specify size

in kilobytes or megabytes.

Name: INITRANS

Type: STRING

Valid Values: N/A

Default: ''

Specify the initial number (1-255) of concurrent transaction entries

allocated within each data block allocated to the database object. The

default is 1.

Name: LOGGING_MODE

Type: STRING

Valid Values: , LOGGING, NOLOGGING

Default: ''

Specify whether the creation of the table and of any indexes required

because of constraints, partition, or LOB storage characteristics will be

logged in the redo log file (LOGGING) or not (NOLOGGING). The default is

LOGGING.

Name: MAXEXTENTS

Type: STRING

Valid Values: N/A

Default: ''

Specify the total number of extents, including the first, that Oracle can

allocate for the object.

Name: MAXTRANS

Type: STRING

Valid Values: N/A

Default: ''

Specify the maximum number (1-255) of concurrent transactions that can

update a data block allocated to the database object.

Name: MINEXTENTS

Type: STRING

Valid Values: N/A

Default: ''

Specify the total number of extents to allocate when the object is created.

Name: MONITORING_MODE

Type: STRING

Valid Values: , MONITORING, NOMONITORING

Default: ''

Specify MONITORING if you want modification statistics to be collected on

this table.

Name: NEXT

Type: STRING

Valid Values: N/A

Default: ''

Specify in bytes the size of the next extent to be allocated. Use K or M to

specify size in kilobytes or megabytes.

Name: OVERFLOW

Type: STRING

Valid Values: N/A

Default: ''

Enter a comma separated list of tablespaces for overflow data. For

simple-partitoned object, it is used for HASH BY QUANTITY partition

overflow tablespaces. The number of tablespaces does not have to equal the

number of partitions. If the number of partitions is greater than the

number of tablespaces, then Oracle cycles through the names of the

tablespaces.

Name: PARALLEL_ACCESS_MODE

Type: STRING

Valid Values: , NOPARALLEL, PARALLEL

Default: ''

Enables or disables parallel processing when the table is created. Also

enables or disables parallel processing or access. The default is PARALLEL.

Name: PARALLEL_DEGREE

Type: STRING

Valid Values: N/A

Default: ''

Enter degree of parallelism, which is the number of parallel threads used

in the parallel operation.

Name: PARTITION_TABLESPACE_LIST

Type: STRING

Valid Values: N/A

Default: ''

Enter a comma separated list of tablespaces. For simple-partitoned object,

it is used for HASH BY QUANTITY partition tablespaces. For

composite-partitioned tables, it is used for subpartition template to store

a list of tablespaces.

Name: PCTFREE

Type: STRING

Valid Values: N/A

Default: ''

Specify a whole number representing the percentage (0-99) of space in each

data block of the database object reserved for future updates to the rows

of the object. The default is 10.

Name: PCTINCREASE

Type: STRING

Valid Values: N/A

Default: ''

Specify the percent by which the third and subsequent extents grow over the

preceding extent. The default is 50.

Name: PCTUSED

Type: STRING

Valid Values: N/A

Default: ''

Specify a whole number representing the minimum percentage (0-99) of used

space that Oracle maintains for each data block of the database object. The

default is 40.

Name: ROWDEPENDENCIES_MODE

Type: STRING

Valid Values: , NOROWDEPENDENCIES, ROWDEPENDENCIES

Default: ''

Specify ROWDEPENDENCIES to use row-level dependency tracking.

Name: ROW_MOVEMENT

Type: STRING

Valid Values: , DISABLE, ENABLE

Default: ''

Specify whether Oracle can move a table row.

Name: SHADOW_TABLESPACE

Type: STRING(30)

Valid Values: N/A

Default: ''

Use the Tablespace parameter to specify the name of tablespace.

Name: SHADOW_TABLE_NAME

Type: STRING(30)

Valid Values: N/A

Default: ''

Use the shadow table name to specify the name of Shadow Table.

Name: TABLESPACE

Type: STRING(30)

Valid Values: N/A

Default: ''

Use the Tablespace parameter to specify the name of tablespace.

Properties for PRIMARY_KEY:

Name: DEFERRABLE

Type: STRING

Valid Values: , DEFERRABLE, NOT DEFERRABLE

Default: ''

Specify DEFERRABLE to indicate that in subsequent transactions you can use

the SET CONSTRAINT[S] clause to defer checking of this constraint until

after the transaction is committed. Specify NOT DEFERRABLE to indicate that

in subsequent transactions you cannot use the SET CONSTRAINT[S] clause to

defer checking of this constraint until the transaction is committed. The

default is NOT DEFERRABLE.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: ENABLECONSTRAINT

Type: STRING

Valid Values: , DISABLE, ENABLE

Default: ''

Specify ENABLE if you want the constraint to be applied to the data in the

table. Specify DISABLE to disable the integrity constraint. The default is

ENABLE.

Name: EXCEPTIONSINTO

Type: STRING

Valid Values: N/A

Default: ''

Specify an exceptions table ([schema.]table). The EXCEPTIONS table or the

table you specify must exist on your local database. If you create your own

exceptions table, then it must follow the format prescribed by one of the

two scripts supplied by Oracle. Do not use this property with NOVALIDATE

option.

Name: INDEX_TABLESPACE

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.TABLE.CONSTRAINT.INDEXTABLESPACE:DESCRIPTION"

Name: INITIALLY

Type: STRING

Valid Values: , DEFERRED, IMMEDIATE

Default: ''

Specify (INITIALLY) IMMEDIATE to indicate that Oracle should check a

DEFERRABLE constraint at the end of each subsequent SQL statement. Specify

(INITIALLY) DEFERRED to indicate that Oracle should check a DEFERRABLE

constraint at the end of subsequent transactions. The default is

(INITIALLY) IMMEDIATE.

Name: RELY

Type: STRING

Valid Values: , NORELY, RELY

Default: ''

Specify RELY to activate an existing constraint in NOVALIDATE mode for

query rewrite in an unenforced query rewrite integrity mode. The default is

NORELY.

Name: SUBSTITUTE_KEY

Type: BOOLEAN

Valid Values: true, false

Default: false

This is related to Streams Support. If this is true, deployment will result

only in creation of the key metadata. The constraint itself will not be

enforced. This will be done by creating a Streams substitute key.

Name: USING_INDEX

Type: BOOLEAN

Valid Values: true, false

Default: false

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.TABLE.CONSTRAINT.USINGINDEX:DESCRIPTION"

Name: VALIDATECONSTRAINT

Type: STRING

Valid Values: , NOVALIDATE, VALIDATE

Default: ''

The behavior of VALIDATE and NOVALIDATE always depends on whether the

constraint is enabled or disabled, either explicitly or by default.

(ENABLE) VALIDATE specifies that all old and new data must compliy with the

constraint. (ENABLE) NOVALIDATE only ensures that all new DML operations on

the constrained data comply with the constraint. (DISABLE) VALIDATE

disables the constraint and drops the index on the constraint, but keeps

the constraint valid. (DISABLE) NOVALIDATE signifies that Oracle makes no

effort to maintain the constraint (because it is disabled) and cannot

guarantee that the constraint is true (because it is not being validated).

The default is NOVALIDATE.

Properties for UNIQUE_KEY:

Name: DEFERRABLE

Type: STRING

Valid Values: , DEFERRABLE, NOT DEFERRABLE

Default: ''

Specify DEFERRABLE to indicate that in subsequent transactions you can use

the SET CONSTRAINT[S] clause to defer checking of this constraint until

after the transaction is committed. Specify NOT DEFERRABLE to indicate that

in subsequent transactions you cannot use the SET CONSTRAINT[S] clause to

defer checking of this constraint until the transaction is committed. The

default is NOT DEFERRABLE.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: ENABLECONSTRAINT

Type: STRING

Valid Values: , DISABLE, ENABLE

Default: ''

Specify ENABLE if you want the constraint to be applied to the data in the

table. Specify DISABLE to disable the integrity constraint. The default is

ENABLE.

Name: EXCEPTIONSINTO

Type: STRING

Valid Values: N/A

Default: ''

Specify an exceptions table ([schema.]table). The EXCEPTIONS table or the

table you specify must exist on your local database. If you create your own

exceptions table, then it must follow the format prescribed by one of the

two scripts supplied by Oracle. Do not use this property with NOVALIDATE

option.

Name: INDEX_TABLESPACE

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.TABLE.CONSTRAINT.INDEXTABLESPACE:DESCRIPTION"

Name: INITIALLY

Type: STRING

Valid Values: , DEFERRED, IMMEDIATE

Default: ''

Specify (INITIALLY) IMMEDIATE to indicate that Oracle should check a

DEFERRABLE constraint at the end of each subsequent SQL statement. Specify

(INITIALLY) DEFERRED to indicate that Oracle should check a DEFERRABLE

constraint at the end of subsequent transactions. The default is

(INITIALLY) IMMEDIATE.

Name: RELY

Type: STRING

Valid Values: , NORELY, RELY

Default: ''

Specify RELY to activate an existing constraint in NOVALIDATE mode for

query rewrite in an unenforced query rewrite integrity mode. The default is

NORELY.

Name: SUBSTITUTE_KEY

Type: BOOLEAN

Valid Values: true, false

Default: false

This is related to Streams Support. If this is true, deployment will result

only in creation of the key metadata. The constraint itself will not be

enforced. This will be done by creating a Streams substitute key.

Name: USING_INDEX

Type: BOOLEAN

Valid Values: true, false

Default: false

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.TABLE.CONSTRAINT.USINGINDEX:DESCRIPTION"

Name: VALIDATECONSTRAINT

Type: STRING

Valid Values: , NOVALIDATE, VALIDATE

Default: ''

The behavior of VALIDATE and NOVALIDATE always depends on whether the

constraint is enabled or disabled, either explicitly or by default.

(ENABLE) VALIDATE specifies that all old and new data must compliy with the

constraint. (ENABLE) NOVALIDATE only ensures that all new DML operations on

the constrained data comply with the constraint. (DISABLE) VALIDATE

disables the constraint and drops the index on the constraint, but keeps

the constraint valid. (DISABLE) NOVALIDATE signifies that Oracle makes no

effort to maintain the constraint (because it is disabled) and cannot

guarantee that the constraint is true (because it is not being validated).

The default is NOVALIDATE.

Properties for FOREIGN_KEY:

Name: DEFERRABLE

Type: STRING

Valid Values: , DEFERRABLE, NOT DEFERRABLE

Default: ''

Specify DEFERRABLE to indicate that in subsequent transactions you can use

the SET CONSTRAINT[S] clause to defer checking of this constraint until

after the transaction is committed. Specify NOT DEFERRABLE to indicate that

in subsequent transactions you cannot use the SET CONSTRAINT[S] clause to

defer checking of this constraint until the transaction is committed. The

default is NOT DEFERRABLE.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: ENABLECONSTRAINT

Type: STRING

Valid Values: , DISABLE, ENABLE

Default: ''

Specify ENABLE if you want the constraint to be applied to the data in the

table. Specify DISABLE to disable the integrity constraint. The default is

ENABLE.

Name: EXCEPTIONSINTO

Type: STRING

Valid Values: N/A

Default: ''

Specify an exceptions table ([schema.]table). The EXCEPTIONS table or the

table you specify must exist on your local database. If you create your own

exceptions table, then it must follow the format prescribed by one of the

two scripts supplied by Oracle. Do not use this property with NOVALIDATE

option.

Name: INITIALLY

Type: STRING

Valid Values: , DEFERRED, IMMEDIATE

Default: ''

Specify (INITIALLY) IMMEDIATE to indicate that Oracle should check a

DEFERRABLE constraint at the end of each subsequent SQL statement. Specify

(INITIALLY) DEFERRED to indicate that Oracle should check a DEFERRABLE

constraint at the end of subsequent transactions. The default is

(INITIALLY) IMMEDIATE.

Name: ONDELETE

Type: STRING

Valid Values: , CASCADE, SET NULL

Default: ''

Specify CASCADE if you want Oracle to remove dependent foreign key values.

Specify SET NULL if you want Oracle to convert dependent foreign key values

to NULL.

Name: RELY

Type: STRING

Valid Values: , NORELY, RELY

Default: ''

Specify RELY to activate an existing constraint in NOVALIDATE mode for

query rewrite in an unenforced query rewrite integrity mode. The default is

NORELY.

Name: SUBSTITUTE_KEY

Type: BOOLEAN

Valid Values: true, false

Default: false

This is related to Streams Support. If this is true, deployment will result

only in creation of the key metadata. The constraint itself will not be

enforced. This will be done by creating a Streams substitute key.

Name: VALIDATECONSTRAINT

Type: STRING

Valid Values: , NOVALIDATE, VALIDATE

Default: ''

The behavior of VALIDATE and NOVALIDATE always depends on whether the

constraint is enabled or disabled, either explicitly or by default.

(ENABLE) VALIDATE specifies that all old and new data must compliy with the

constraint. (ENABLE) NOVALIDATE only ensures that all new DML operations on

the constrained data comply with the constraint. (DISABLE) VALIDATE

disables the constraint and drops the index on the constraint, but keeps

the constraint valid. (DISABLE) NOVALIDATE signifies that Oracle makes no

effort to maintain the constraint (because it is disabled) and cannot

guarantee that the constraint is true (because it is not being validated).

The default is NOVALIDATE.

Properties for CHECK_CONSTRAINT:

Name: DEFERRABLE

Type: STRING

Valid Values: , DEFERRABLE, NOT DEFERRABLE

Default: ''

Specify DEFERRABLE to indicate that in subsequent transactions you can use

the SET CONSTRAINT[S] clause to defer checking of this constraint until

after the transaction is committed. Specify NOT DEFERRABLE to indicate that

in subsequent transactions you cannot use the SET CONSTRAINT[S] clause to

defer checking of this constraint until the transaction is committed. The

default is NOT DEFERRABLE.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: ENABLECONSTRAINT

Type: STRING

Valid Values: , DISABLE, ENABLE

Default: ''

Specify ENABLE if you want the constraint to be applied to the data in the

table. Specify DISABLE to disable the integrity constraint. The default is

ENABLE.

Name: EXCEPTIONSINTO

Type: STRING

Valid Values: N/A

Default: ''

Specify an exceptions table ([schema.]table). The EXCEPTIONS table or the

table you specify must exist on your local database. If you create your own

exceptions table, then it must follow the format prescribed by one of the

two scripts supplied by Oracle. Do not use this property with NOVALIDATE

option.

Name: INITIALLY

Type: STRING

Valid Values: , DEFERRED, IMMEDIATE

Default: ''

Specify (INITIALLY) IMMEDIATE to indicate that Oracle should check a

DEFERRABLE constraint at the end of each subsequent SQL statement. Specify

(INITIALLY) DEFERRED to indicate that Oracle should check a DEFERRABLE

constraint at the end of subsequent transactions. The default is

(INITIALLY) IMMEDIATE.

Name: RELY

Type: STRING

Valid Values: , NORELY, RELY

Default: ''

Specify RELY to activate an existing constraint in NOVALIDATE mode for

query rewrite in an unenforced query rewrite integrity mode. The default is

NORELY.

Name: SUBSTITUTE_KEY

Type: BOOLEAN

Valid Values: true, false

Default: false

This is related to Streams Support. If this is true, deployment will result

only in creation of the key metadata. The constraint itself will not be

enforced. This will be done by creating a Streams substitute key.

Name: VALIDATECONSTRAINT

Type: STRING

Valid Values: , NOVALIDATE, VALIDATE

Default: ''

The behavior of VALIDATE and NOVALIDATE always depends on whether the

constraint is enabled or disabled, either explicitly or by default.

(ENABLE) VALIDATE specifies that all old and new data must compliy with the

constraint. (ENABLE) NOVALIDATE only ensures that all new DML operations on

the constrained data comply with the constraint. (DISABLE) VALIDATE

disables the constraint and drops the index on the constraint, but keeps

the constraint valid. (DISABLE) NOVALIDATE signifies that Oracle makes no

effort to maintain the constraint (because it is disabled) and cannot

guarantee that the constraint is true (because it is not being validated).

The default is NOVALIDATE.

Properties for INDEX:

Name: BUFFER_POOL

Type: STRING

Valid Values: , DEFAULT, KEEP, RECYCLE

Default: ''

Specify a default buffer pool (cache) for table or partition object. The

default is DEFAULT.

Name: COMPUTESTATISTICS

Type: STRING

Valid Values: , NO, YES

Default: ''

Specify YES to collect statistics at relatively little cost during the

creation of an index.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: FREELISTGROUPS

Type: STRING

Valid Values: N/A

Default: ''

Specify the number of groups of free lists for the database object you are

creating. The default is 1.

Name: FREELISTS

Type: STRING

Valid Values: N/A

Default: ''

Specify the number of free lists for each of the free list groups for the

table, partition, cluster, or index. The default is 1.

Name: INDEXORDER

Type: STRING

Valid Values: , ASC, DESC

Default: ''

Use ASC or DESC to indicate whether the index should be created in

ascending or descending order. The Oracle default is ASC.

Name: INITIAL

Type: STRING

Valid Values: N/A

Default: ''

Specify in bytes the size of the first extent. Use K or M to specify size

in kilobytes or megabytes.

Name: INITRANS

Type: STRING

Valid Values: N/A

Default: ''

Specify the initial number (2-255) of concurrent transaction entries

allocated within each data block allocated to the database object. The

default is 2 for Index.

Name: KEYCOMPRESS

Type: STRING

Valid Values: , COMPRESS, NOCOMPRESS

Default: ''

Specify COMPRESS to enable key compression.

Name: KEYCOMPRESSPREFIXLENGTH

Type: STRING

Valid Values: N/A

Default: ''

Specify the prefix length (number of prefix columns to compress). For

unique indexes, the valid range of prefix length values is from 1 to the

number of key columns minus 1. The default prefix length is the number of

key columns minus 1. For nonunique indexes, the valid range of prefix

length values is from 1 to the number of key columns. The default prefix

length is the number of key columns. Oracle compresses only nonpartitioned

indexes that are nonunique or unique indexes of at least two columns. You

cannot specify COMPRESS for a bitmap index.

Name: LOGGING_MODE

Type: STRING

Valid Values: , LOGGING, NOLOGGING

Default: ''

Specify whether the creation of the table and of any indexes required

because of constraints, partition, or LOB storage characteristics will be

logged in the redo log file (LOGGING) or not (NOLOGGING). The default is

LOGGING.

Name: MAXEXTENTS

Type: STRING

Valid Values: N/A

Default: ''

Specify the total number of extents, including the first, that Oracle can

allocate for the object.

Name: MAXTRANS

Type: STRING

Valid Values: N/A

Default: ''

Specify the maximum number (2-255) of concurrent transactions that can

update a data block allocated to the database object.

Name: MINEXTENTS

Type: STRING

Valid Values: N/A

Default: ''

Specify the total number of extents to allocate when the object is created.

Name: NEXT

Type: STRING

Valid Values: N/A

Default: ''

Specify in bytes the size of the next extent to be allocated. Use K or M to

specify size in kilobytes or megabytes.

Name: ONLINE

Type: STRING

Valid Values: , NO, YES

Default: ''

Specify YES to indicate that DML operations on the table will be allowed

during creation of the index.

Name: OPTIMAL

Type: STRING

Valid Values: N/A

Default: ''

Specifies an optimal size in bytes for a rollback segment. Use K or M to

specify this size in kilobytes or megabytes. Specify NULL for no optimal

size for the rollback segment. The default is NULL.

Name: OVERFLOW

Type: STRING

Valid Values: N/A

Default: ''

Enter a comma separated list of Index tablespaces for overflow data. For

simple-partitoned object, it is used for HASH BY QUANTITY partition

overflow Index tablespaces. The number of Index tablespaces does not have

to equal the number of partitions. If the number of partitions is greater

than the number of Index tablespaces, then Oracle cycles through the names

of the Index tablespaces.

Name: PARALLEL_ACCESS_MODE

Type: STRING

Valid Values: , NOPARALLEL, PARALLEL

Default: ''

Enables or disables parallel processing when the table is created. Also

enables or disables parallel processing or access. The default is PARALLEL.

Name: PARALLEL_DEGREE

Type: STRING

Valid Values: N/A

Default: ''

Enter degree of parallelism, which is the number of parallel threads used

in the parallel operation.

Name: PARTITION_TABLESPACE_LIST

Type: STRING

Valid Values: N/A

Default: ''

Enter a comma separated list of tablespaces for a locally partitioned

index. For simple-partitoned object, it is used for HASH BY QUANTITY

partition tablespaces. If specified, then individual local Hash index

partitions specified will be ignored for Local Hash or Range-Hash Index

partitioning.

Name: PCTFREE

Type: STRING

Valid Values: N/A

Default: ''

Specify a whole number representing the percentage (0-99) of space in each

data block of the database object reserved for future updates to the rows

of the object. The default is 10.

Name: PCTINCREASE

Type: STRING

Valid Values: N/A

Default: ''

Specify the percent by which the third and subsequent extents grow over the

preceding extent. The default is 50.

Name: SORT

Type: STRING

Valid Values: , NOSORT, REVERSE, SORT

Default: ''

Specify NOSORT to indicate to Oracle that the rows are already stored in

the database in ascending order. Specify REVERSE to store the bytes of the

index block in reverse order, excluding the rowid.

Name: SUBSTITUTE_KEY

Type: BOOLEAN

Valid Values: true, false

Default: false

This is related to Streams Support. If this is true, deployment will result

only in creation of the key metadata. The constraint itself will not be

enforced. This will be done by creating a Streams substitute key.

Name: TABLESPACE

Type: STRING(30)

Valid Values: N/A

Default: ''

Use the Tablespace parameter to specify the name of tablespace.

Properties for PARTITION:

Name: BUFFER_POOL

Type: STRING

Valid Values: , DEFAULT, KEEP, RECYCLE

Default: ''

Specify a default buffer pool (cache) for table or partition object. The

default is DEFAULT.

Name: DATA_SEGMENT_COMPRESSION

Type: STRING

Valid Values: , COMPRESS, NOCOMPRESS

Default: ''

Use this clause to instruct Oracle whether to compress data segments to

reduce disk use. The default is NOCOMPRESS.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: FREELISTGROUPS

Type: STRING

Valid Values: N/A

Default: ''

Specify the number of groups of free lists for the database object you are

creating. The default is 1.

Name: FREELISTS

Type: STRING

Valid Values: N/A

Default: ''

Specify the number of free lists for each of the free list groups for the

table, partition, cluster, or index.

Name: INITIAL

Type: STRING

Valid Values: N/A

Default: ''

Specify in bytes the size of the first extent. Use K or M to specify size

in kilobytes or megabytes.

Name: INITRANS

Type: STRING

Valid Values: N/A

Default: ''

Specify the initial number (1-255) of concurrent transaction entries

allocated within each data block allocated to the database object. The

default is 1 for Table and 2 for Index.

Name: LOGGING_MODE

Type: STRING

Valid Values: , LOGGING, NOLOGGING

Default: ''

Specify whether the creation of the table and of any indexes required

because of constraints, partition, or LOB storage characteristics will be

logged in the redo log file (LOGGING) or not (NOLOGGING). The default is

LOGGING.

Name: MAXEXTENTS

Type: STRING

Valid Values: N/A

Default: ''

Specify the total number of extents, including the first, that Oracle can

allocate for the object.

Name: MAXTRANS

Type: STRING

Valid Values: N/A

Default: ''

Specify the maximum number (1-255) of concurrent transactions that can

update a data block allocated to the database object.

Name: MINEXTENTS

Type: STRING

Valid Values: N/A

Default: ''

Specify the total number of extents to allocate when the object is created.

Name: NEXT

Type: STRING

Valid Values: N/A

Default: ''

Specify in bytes the size of the next extent to be allocated. Use K or M to

specify size in kilobytes or megabytes.

Name: OPTIMAL

Type: STRING

Valid Values: N/A

Default: ''

Specifies an optimal size in bytes for a rollback segment. Use K or M to

specify this size in kilobytes or megabytes. Specify NULL for no optimal

size for the rollback segment. The default is NULL.

Name: PCTFREE

Type: STRING

Valid Values: N/A

Default: ''

Specify a whole number representing the percentage (0-99) of space in each

data block of the database object reserved for future updates to the rows

of the object. The default is 10.

Name: PCTINCREASE

Type: STRING

Valid Values: N/A

Default: ''

Specify the percent by which the third and subsequent extents grow over the

preceding extent. The default is 50.

Name: PCTUSED

Type: STRING

Valid Values: N/A

Default: ''

Specify a whole number representing the minimum percentage (0-99) of used

space that Oracle maintains for each data block of the database object. The

default is 40.

Name: TABLESPACE

Type: STRING(30)

Valid Values: N/A

Default: ''

Use the Tablespace parameter to specify the name of tablespace.

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

getTableSCOClause

This clause retrieves components like columns, indexes etc. of a table.

getConfigurationPropertiesClause

This clauses gets the configuration properties of the object.

propertyNameList

The list of properties.

See Also

OMBRETRIEVE, OMBCREATE TABLE, OMBALTER TABLE, OMBDROP TABLE

OMBRETRIEVE TIME_DIMENSION

Purpose

This command retrieve metadata from the time dimension.

Prerequisites

Should be in Oracle Module context.

Syntax

retrieveTimeDimensionCommand =  OMBRETRIEVE TIME_DIMENSION 
     "TimeDimensionName" ( GET ( PROPERTIES "propertyKeyList" | FISCAL 
     PROPERTIES "propertyKeyList" | DIMENSION_ATTRIBUTES | LEVELS | 
     HIERARCHIES | DIMENSION_ROLES | YEARS | START_YEAR | 
     IMPLEMENTATION_STRATEGY | MAPPING | IMPLEMENTED_OBJECTS ) | 
     "dimensionAttributeDetailClause" | "levelDetailClause" | 
     "hierarchyDetailClause" | "roleDetailClause" )
TimeDimensionName =  "QUOTED_STRING"
propertyKeyList =  "(" "propertyKey" { "," "propertyKey" } ")"
dimensionAttributeDetailClause =  "dimensionAttributeLocator" GET 
     PROPERTIES "propertyKeyList"
levelDetailClause =  "levelLocator" ( GET ( PROPERTIES "propertyKeyList" | 
     LEVEL_ATTRIBUTES | IMPLEMENTED_OBJECT ) | "levelAttributeDetailClause"
      )
hierarchyDetailClause =  "hierarchyLocator" GET ( PROPERTIES 
     "propertyKeyList" | ( REF | REFERENCE ) LEVELS )
roleDetailClause =  "roleLocator" ( GET ( PROPERTIES "propertyKeyList" ) )
propertyKey =  "UNQUOTED_STRING"
dimensionAttributeLocator =  DIMENSION_ATTRIBUTE "dimensionAttributeName"
levelLocator =  LEVEL "levelName"
levelAttributeDetailClause =  "levelAttributeLocator" GET ( PROPERTIES 
     "propertyKeyList" | IMPLEMENTED COLUMN )
hierarchyLocator =  HIERARCHY "hierarchyName"
roleLocator =  ROLE "roleName"
dimensionAttributeName =  "QUOTED_STRING"
levelName =  "QUOTED_STRING"
levelAttributeLocator =  LEVEL_ATTRIBUTE "levelAttributeName"
hierarchyName =  "QUOTED_STRING"
roleName =  "QUOTED_STRING"
levelAttributeName =  "QUOTED_STRING"

Keywords And Parameters

TimeDimensionName

The name of the time dimension.

propertyKeyList

A list of time dimension properties.

dimensionAttributeDetailClause

This clause gets property details of dimension attribute.

levelDetailClause

This clause gets property details of a level.

hierarchyDetailClause

This clause gets property details of a hierarchy.

roleDetailClause

This clause gets property details of a role.

propertyKey

Basic properties for TIME DIMENSION, TIME DIMENSION MAP,

DIMENSION_ATTRIBUTE, LEVEL, LEVEL_ATTRIBUTE and HIERARCHY:

Basic properties for TIME DIMENSION :

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Time Dimension

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Time Dimension

Name: STORAGE

Type: STRING

Valid Values: 'RELATIONAL', 'AW'

Default: 'RELATIONAL'

The storage of a dimension can be AW or relational

Name: AW_NAME

Type: STRING(32)

Valid Values: N/A

Default: ''

Set the analytical workspace name where the dimension is implemented

Name: AW_DIMENSION_NAME

Type: STRING(32)

Valid Values: N/A

Default: ''

Set the Analytical Workspace dimension physical object name

Basic properties for TIME MAP :

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Time Dimension Map

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Time Dimension Map

Basic properties for DIMENSION_ATTRIBUTE:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Dimension_Attribute

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Properties for DIMENSION:

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: DEPLOYMENT_OPTIONS

Type: STRING

Valid Values: DEPLOY_ALL, DEPLOY_DATA_OBJECTS_ONLY, DEPLOY_TO_CATALOG_ONLY

Default: DEPLOY_DATA_OBJECTS_ONLY

Warehouse Builder generates a set of scripts for Dimension, they are DDL

Scripts for Relational Dimensional or Scripts for ROLAP or or Scripts for

AW.

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Name: VIEW_NAME

Type: STRING(30)

Valid Values: N/A

Default: ''

Name of the view that is generated to hide the control rows on the

dimension implementation table of a star schema. If this field is left

blank, the view name will default to '<Name of Dimension>_v'

Name: VISIBLE

Type: BOOLEAN

Valid Values: true, false

Default: true

The Dimension is visible to OLAP end user if value is set = true.

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

levelLocator

This clause gets the level.

levelAttributeDetailClause

This clause gets property details of a level attribute.

hierarchyLocator

This clause gets the hierarchy.

levelAttributeLocator

This clause gets the level Attribute.

hierarchyName

The name of a hierarchy.

roleName

A role name.

See Also

OMBCREATE TIME_DIMENSION, OMBALTER TIME_DIMENSION, OMBDROP TIME_DIMENSION

OMBRETRIEVE TRANSPORTABLE_MODULE

Purpose

To retrieve properties of a transportable module, its contents and their properties, and source and

target locations.

Prerequisites

In the context of a project.

Syntax

retrieveTMCommand =  OMBRETRIEVE TRANSPORTABLE_MODULE "QUOTED_STRING" GET (
      "getPropertiesClause" | "getTablespacePropertiesClause" | 
     "getDatafilePropertiesClause" | "getSchemaPropertiesClause" | 
     "getTablespacesClause" | "getDatafilesInTablespaceClause" | 
     "getSchemasInTablespaceClause" | "getAllSchemasClause" | 
     "getSourceLocationClause" | "getTargetLocationClause" | 
     "getReferenceIconSetClause" )
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
getTablespacePropertiesClause =  TRANSPORTABLE_MODULE_TABLESPACE 
     "QUOTED_STRING" PROPERTIES "(" "propertyNameList" ")"
getDatafilePropertiesClause =  DATAFILE "QUOTED_STRING" PROPERTIES "(" 
     "propertyNameList" ")"
getSchemaPropertiesClause =  TRANSPORTABLE_MODULE_SCHEMA "QUOTED_STRING" 
     PROPERTIES "(" "propertyNameList" ")"
getTablespacesClause =  TRANSPORTABLE_MODULE_TABLESPACES
getDatafilesInTablespaceClause =  DATAFILES IN 
     TRANSPORTABLE_MODULE_TABLESPACE "QUOTED_STRING"
getSchemasInTablespaceClause =  TRANSPORTABLE_MODULE_SCHEMAS IN 
     TRANSPORTABLE_MODULE_TABLESPACE "QUOTED_STRING"
getAllSchemasClause =  ALL TRANSPORTABLE_MODULE_SCHEMAS
getSourceLocationClause =  SOURCE_LOCATION
getTargetLocationClause =  TARGET_LOCATION
getReferenceIconSetClause =  ( REF | REFERENCE ) ICONSET
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveTMCommand

This command is for querying information about the transportable module and

its contents.

getPropertiesClause

Retrieve properties for the transportable module.

getTablespacePropertiesClause

Retrieve properties for a tablespace within the transportable module.

QUOTED_STRING

The name of the tablespace whose properties are to be retrieved.

getDatafilePropertiesClause

Retrieve properties for a datafile within the transportable module.

QUOTED_STRING

The name of the datafile whose properties are to be retrieved.

getSchemaPropertiesClause

Retrieve properties for a schema within the transportable module.

QUOTED_STRING

The name of the schema whose properties are to be retrieved.

getTablespacesClause

Retrieve names of all tablespaces in the transportable module.

getDatafilesInTablespaceClause

Retrieve names of all datafiles of a tablespace within the transportable

module.

QUOTED_STRING

The name of the tablespace whose datafile names are to be retrieved.

getSchemasInTablespaceClause

Retrieve names of schemas that are parts of the named tablespace.

QUOTED_STRING

The name of the tablespace whose component schemas names are to be

retrieved.

getAllSchemasClause

Retrieve names of all schemas within the transportable module.

getSourceLocationClause

Retrieve name of the source location.

getTargetLocationClause

Retrieve name of the target location.

getReferenceIconSetClause

Retrieve name of the icon set.

propertyNameList

The list of unquoted property names.

See Also

OMBRETRIEVE, OMBCREATE TRANSPORTABLE_MODULE, OMBALTER TRANSPORTABLE_MODULE

OMBRETRIEVE USER

Purpose

To retrieve properties of a Warehouse Builder user.

Prerequisites

Must be connected to a workspace on OWB repository.

Syntax

retrieveUserCommand =  OMBRETRIEVE USER "QUOTED_STRING" ( GET 
     "getPropertiesClause" )
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")" 
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveUserCommand

This clause retrieves properties of a Warehouse Builder user.

getPropertiesClause

Retrieve specified properties.

Basic properties for USER:

Name: PROMPT_FOR_COMMIT

Type: BOOLEAN

Valid Values: true, false

Default: false

Name: PROMPT_FOR_JOB_NAME

Type: BOOLEAN

Valid Values: true, false

Default: false

Name: PROMPT_FOR_EXECUTION_PARAMS

Type: BOOLEAN

Valid Values: true, false

Default: false

Name: SHOW_MONITOR

Type: BOOLEAN

Valid Values: true, false

Default: false

Name: SHOW_DEPLOYMENT_COMPLETION

Type: BOOLEAN

Valid Values: true, false

Default: false

Name: SHOW_DEPLOYMENT_DEPENDENCIES

Type: BOOLEAN

Valid Values: true, false

Default: false

Name: SHOW_MONITOR_RESULTS

Type: BOOLEAN

Valid Values: true, false

Default: true

Name: SHOW_MONITOR_LOGFILE

Type: BOOLEAN

Valid Values: true, false

Default: true

Name: PERSONALITY

Type: STRING

Valid Values: N/A

Default: Default

Name: SHOW_GUIDED_ASSISTANCE

Type: BOOLEAN

Valid Values: true, false

Default: false

Name: HIDE_WIZARD_WELCOME_PAGES

Type: BOOLEAN

Valid Values: true, false

Default: false

Name: SHOW_DELETE_CONFIRMATION

Type: BOOLEAN

Valid Values: true, false

Default: true

Name: RECYCLE_DELETED_OBJECTS

Type: BOOLEAN

Valid Values: true, false

Default: true

Name: EMPTY_RECYCLE_BIN

Type: BOOLEAN

Valid Values: true, false

Default: false

Name: CLEAR_CLIPBOARD

Type: BOOLEAN

Valid Values: true, false

Default: true

Name: SHOW_GENERATION_PROJECT

Type: BOOLEAN

Valid Values: true, false

Default: true

Name: SHOW_GENERATION_MODULE

Type: BOOLEAN

Valid Values: true, false

Default: true

Name: SHOW_GENERATION_LOCATION

Type: BOOLEAN

Valid Values: true, false

Default: false

Name: SHOW_GENERATION_ACTION

Type: BOOLEAN

Valid Values: true, false

Default: false

Name: SHOW_GENERATION_TYPE

Type: BOOLEAN

Valid Values: true, false

Default: true

Name: LOG_FILE_PATH

Type: STRING(1000)

Valid Values: N/A

Default: ''

Name: LOG_FILE_NAME

Type: STRING(1000)

Valid Values: N/A

Default: log

Name: LOG_FILE_MAX_SIZE

Type: STRING

Valid Values: 1-10000000

Default: 100

Name: LOG_ERROR_MESSAGES

Type: BOOLEAN

Valid Values: true, false

Default: true

Name: LOG_WARNING_MESSAGES

Type: BOOLEAN

Valid Values: true, false

Default: true

Name: LOG_INFORMATION_MESSAGES

Type: BOOLEAN

Valid Values: true, false

Default: false

Name: NAMING_MODE

Type: STRING

Valid Values: PHYSICAL_NAMING_MODE, BUSINESS_NAMING_MODE

Default: PHYSICAL_NAMING_MODE

Name: PROPAGATE_NAME_CHANGES

Type: BOOLEAN

Valid Values: true, false

Default: false

Name: DESIGNREPOS_PWD_PERSIST

Type: BOOLEAN

Valid Values: true, false

Default: true

Name: RUNTIMEREPOS_PWD_SHARE

Type: BOOLEAN

Valid Values: true, false

Default: true

Name: DEFAULT_SEC_POLICY

Type: STRING

Valid Values: MINIMUM_SECURITY, MAXIMUM_SECURITY

Default: MINIMUM_SECURITY

See Also

OMBUNREGISTER USER, OMBALTER USER, OMBREGISTER USER

OMBRETRIEVE VARYING_ARRAY

Purpose

Retrieve details of the Varying Array.

Prerequisites

Should be in the context of an Oracle Module.

Syntax

retrieveVaryingArrayCommand =  OMBRETRIEVE VARYING_ARRAY "QUOTED_STRING" ( 
     GET ( "getPropertiesClause" | "getReferenceIconSetClause" ) )
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
getReferenceIconSetClause =  ( REF | REFERENCE ) ICONSET
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveVaryingArrayCommand

Retrieves the details of the Varying Array with the given name.

getPropertiesClause

This clause retrieves all the properties.

Basic properties for VARYING_ARRAY:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the Varying Array

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the Varying Array

Name: DATATYPE

Type: STRING(20)

Valid Values: BINARY_DOUBLE, BINARY_FLOAT, BLOB, CHAR, CLOB, DATE, FLOAT,

INTEGER, INTERVAL DAY TO SECOND, INTERVAL YEAR TO MONTH, NCHAR, NCLOB,

NUMBER, NVARCHAR2, RAW, SYS.ANYDATA, SYS.LCR$_ROW_RECORD, SYS.XMLFORMAT,

TIMESTAMP, TIMESTAMP WITH LOCAL TIME ZONE, TIMESTAMP WITH TIME ZONE,

VARHCAR, VARCHAR2, XMLTYPE

Default: ''

Datatype of the Base Element of the Varying Array

Properties for VARYING_ARRAY:

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

propertyNameList

The list of properties.

See Also

OMBRETRIEVE

OMBRETRIEVE VIEW

Purpose

To retrieve properties of a view.

Prerequisites

In the context of an Oracle Module

Syntax

retrieveViewCommand =  OMBRETRIEVE VIEW "QUOTED_STRING" ( 
     "retrieveViewClause" | "retrieveColumnClause" | "retrieveUkPkClause" |
      "retrieveFkClause" | "retrieveDataRuleUsageClause" )
retrieveViewClause =  GET ( "getPropertiesClause" | 
     "getReferenceIconSetClause" | "getViewSCOorDependentsClause" )
retrieveColumnClause =  COLUMN "QUOTED_STRING" GET "getPropertiesClause"
retrieveUkPkClause =  ( UNIQUE_KEY | PRIMARY_KEY ) "QUOTED_STRING" GET ( 
     "getPropertiesClause" | COLUMNS )
retrieveFkClause =  FOREIGN_KEY "QUOTED_STRING" GET ( "getPropertiesClause"
      | COLUMNS | UNIQUE_KEY | PRIMARY_KEY | REFERENCED_KEY )
retrieveDataRuleUsageClause =  DATA_RULE_USAGE "QUOTED_STRING" ( GET ( 
     "getPropertiesClause" | GROUPS ) | GROUP "QUOTED_STRING" ( GET ( 
     "getPropertiesClause" | ATTRIBUTES | REF ( TABLE | VIEW | 
     MATERIALIZED_VIEW | EXTERNAL_TABLE ) ) | ATTRIBUTE "QUOTED_STRING" ( 
     GET ( "getPropertiesClause" | REF COLUMN ) ) ) )
getPropertiesClause =  PROPERTIES "(" "propertyNameList" ")"
getReferenceIconSetClause =  ( REF | REFERENCE ) ICONSET
getViewSCOorDependentsClause =  COLUMNS | UNIQUE_KEYS | PRIMARY_KEY | 
     FOREIGN_KEYS | COLUMN AT POSITION "INTEGER_LITERAL" | DATA_RULE_USAGES
      | ( REF | REFERENCE ) ( TABLES | VIEWS | MATERIALIZED_VIEWS )
propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }

Keywords And Parameters

retrieveViewCommand

This clause retrieves a view.

QUOTED_STRING

name of the view.

retrieveViewClause

This clause will retrieve a view.

retrieveColumnClause

This clause will retrieve columns.

QUOTED_STRING

Name of the column.

retrieveUkPkClause

This clause will retrieve a unique key or primary key.

QUOTED_STRING

Name of the unique key or the primary key.

retrieveFkClause

This clause will retrieve a key referenced by a foreign key, either a

unique key or primary key. Use REFERENCED_KEY to retrieve the referenced

key for a foreign key regardless of the type of referenced key (unique or

primary).

QUOTED_STRING

Name of the foreign key.

retrieveDataRuleUsageClause

This clause retrieves the data rule usages.

QUOTED_STRING

Name of data rule usage, group or attribute.

GROUPS

Retrieve the names of all relation groups in the data rule usage.

ATTRIBUTES

Retrieve the names of all attributes in a data rule usage group.

TABLE

Table name associated withthe data rule usage group.

VIEW

View name associated withthe data rule usage group.

MATERIALIZED_VIEW

Materialized view name associated with the data rule usage group.

EXTERNAL_TABLE

External table name associated with the data rule usage group.

COLUMN

Column name associated with the data rule usage group attribute.

getPropertiesClause

This clause retrieves all the properties.

Note:

Constraints can be specified but will not be generated for either View or

Materialized View in this release.

Basic properties for VIEW, MATERIALIZED_VIEW:

Name: BUSINESS_NAME

Type: STRING(200)

Valid Values: N/A

Default: ''

Business name of the View, MaterializedView

Name: DESCRIPTION

Type: STRING(4000)

Valid Values: N/A

Default: ''

Description of the View, MaterializedView

Name: VIEW_QUERY

Type: STRING(4000)

Valid Values: N/A

Default: ''

Sets the query definition in View and MaterializedView.

Properties for VIEW:

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: GENERATION_COMMENTS

Type: STRING

Valid Values: N/A

Default: ''

Enter additional comments for the generated code.

Name: SHADOW_TABLESPACE

Type: STRING(30)

Valid Values: N/A

Default: ''

Use the Tablespace parameter to specify the name of tablespace.

Name: SHADOW_TABLE_NAME

Type: STRING(30)

Valid Values: N/A

Default: ''

Use the shadow table name to specify the name of Shadow Table.

Properties for UNIQUE_KEY:

Name: DEFERRABLE

Type: STRING

Valid Values: , DEFERRABLE, NOT DEFERRABLE

Default: ''

Specify DEFERRABLE to indicate that in subsequent transactions you can use

the SET CONSTRAINT[S] clause to defer checking of this constraint until

after the transaction is committed. Specify NOT DEFERRABLE to indicate that

in subsequent transactions you cannot use the SET CONSTRAINT[S] clause to

defer checking of this constraint until the transaction is committed. The

default is NOT DEFERRABLE.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: ENABLECONSTRAINT

Type: STRING

Valid Values: , DISABLE, ENABLE

Default: ''

Specify ENABLE if you want the constraint to be applied to the data in the

table. Specify DISABLE to disable the integrity constraint. The default is

ENABLE.

Name: EXCEPTIONSINTO

Type: STRING

Valid Values: N/A

Default: ''

Specify an exceptions table ([schema.]table). The EXCEPTIONS table or the

table you specify must exist on your local database. If you create your own

exceptions table, then it must follow the format prescribed by one of the

two scripts supplied by Oracle. Do not use this property with NOVALIDATE

option.

Name: INDEX_TABLESPACE

Type: STRING(30)

Valid Values: N/A

Default: ''

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.TABLE.CONSTRAINT.INDEXTABLESPACE:DESCRIPTION"

Name: INITIALLY

Type: STRING

Valid Values: , DEFERRED, IMMEDIATE

Default: ''

Specify (INITIALLY) IMMEDIATE to indicate that Oracle should check a

DEFERRABLE constraint at the end of each subsequent SQL statement. Specify

(INITIALLY) DEFERRED to indicate that Oracle should check a DEFERRABLE

constraint at the end of subsequent transactions. The default is

(INITIALLY) IMMEDIATE.

Name: RELY

Type: STRING

Valid Values: , NORELY, RELY

Default: ''

Specify RELY to activate an existing constraint in NOVALIDATE mode for

query rewrite in an unenforced query rewrite integrity mode. The default is

NORELY.

Name: SUBSTITUTE_KEY

Type: BOOLEAN

Valid Values: true, false

Default: false

This is related to Streams Support. If this is true, deployment will result

only in creation of the key metadata. The constraint itself will not be

enforced. This will be done by creating a Streams substitute key.

Name: USING_INDEX

Type: BOOLEAN

Valid Values: true, false

Default: false

oracle.owb.scripting.help.OMBHelpGenerator(557): NLS Lookup error for key

"9i.TABLE.CONSTRAINT.USINGINDEX:DESCRIPTION"

Name: VALIDATECONSTRAINT

Type: STRING

Valid Values: , NOVALIDATE, VALIDATE

Default: ''

The behavior of VALIDATE and NOVALIDATE always depends on whether the

constraint is enabled or disabled, either explicitly or by default.

(ENABLE) VALIDATE specifies that all old and new data must compliy with the

constraint. (ENABLE) NOVALIDATE only ensures that all new DML operations on

the constrained data comply with the constraint. (DISABLE) VALIDATE

disables the constraint and drops the index on the constraint, but keeps

the constraint valid. (DISABLE) NOVALIDATE signifies that Oracle makes no

effort to maintain the constraint (because it is disabled) and cannot

guarantee that the constraint is true (because it is not being validated).

The default is NOVALIDATE.

Properties for FOREIGN_KEY:

Name: DEFERRABLE

Type: STRING

Valid Values: , DEFERRABLE, NOT DEFERRABLE

Default: ''

Specify DEFERRABLE to indicate that in subsequent transactions you can use

the SET CONSTRAINT[S] clause to defer checking of this constraint until

after the transaction is committed. Specify NOT DEFERRABLE to indicate that

in subsequent transactions you cannot use the SET CONSTRAINT[S] clause to

defer checking of this constraint until the transaction is committed. The

default is NOT DEFERRABLE.

Name: DEPLOYABLE

Type: BOOLEAN

Valid Values: true, false

Default: true

Warehouse Builder generates a set of scripts to create an object only for

those object marked as Deployable = true

Name: ENABLECONSTRAINT

Type: STRING

Valid Values: , DISABLE, ENABLE

Default: ''

Specify ENABLE if you want the constraint to be applied to the data in the

table. Specify DISABLE to disable the integrity constraint. The default is

ENABLE.

Name: EXCEPTIONSINTO

Type: STRING

Valid Values: N/A

Default: ''

Specify an exceptions table ([schema.]table). The EXCEPTIONS table or the

table you specify must exist on your local database. If you create your own

exceptions table, then it must follow the format prescribed by one of the

two scripts supplied by Oracle. Do not use this property with NOVALIDATE

option.

Name: INITIALLY

Type: STRING

Valid Values: , DEFERRED, IMMEDIATE

Default: ''

Specify (INITIALLY) IMMEDIATE to indicate that Oracle should check a

DEFERRABLE constraint at the end of each subsequent SQL statement. Specify

(INITIALLY) DEFERRED to indicate that Oracle should check a DEFERRABLE

constraint at the end of subsequent transactions. The default is

(INITIALLY) IMMEDIATE.

Name: ONDELETE

Type: STRING

Valid Values: , CASCADE, SET NULL

Default: ''

Specify CASCADE if you want Oracle to remove dependent foreign key values.

Specify SET NULL if you want Oracle to convert dependent foreign key values

to NULL.

Name: RELY

Type: STRING

Valid Values: , NORELY, RELY

Default: ''

Specify RELY to activate an existing constraint in NOVALIDATE mode for

query rewrite in an unenforced query rewrite integrity mode. The default is

NORELY.

Name: SUBSTITUTE_KEY

Type: BOOLEAN

Valid Values: true, false

Default: false

This is related to Streams Support. If this is true, deployment will result

only in creation of the key metadata. The constraint itself will not be

enforced. This will be done by creating a Streams substitute key.

Name: VALIDATECONSTRAINT

Type: STRING

Valid Values: , NOVALIDATE, VALIDATE

Default: ''

The behavior of VALIDATE and NOVALIDATE always depends on whether the

constraint is enabled or disabled, either explicitly or by default.

(ENABLE) VALIDATE specifies that all old and new data must compliy with the

constraint. (ENABLE) NOVALIDATE only ensures that all new DML operations on

the constrained data comply with the constraint. (DISABLE) VALIDATE

disables the constraint and drops the index on the constraint, but keeps

the constraint valid. (DISABLE) NOVALIDATE signifies that Oracle makes no

effort to maintain the constraint (because it is disabled) and cannot

guarantee that the constraint is true (because it is not being validated).

The default is NOVALIDATE.

Note:

1. N/A means any valid character in supported character set.

2. '' represents an empty string

getViewSCOorDependentsClause

This clause will retrieves view components like columns, keys, etc. or

relational objects that this view hav referential dependency on.

propertyNameList

The list of properties.

See Also

OMBRETRIEVE, OMBCREATE VIEW, OMBALTER VIEW, OMBDROP VIEW