|
Oracle Warehouse Builder Java API Reference 10g Release 1 (10.1) B12155-01 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
OracleModule is a specialized Module, which represents a logical Oracle database module. It can contain relational data entities like Table, View and Sequence, multi-dimesional entities like Cube and Dimension, transformations and maps.
| Field Summary |
| Fields inherited from interface oracle.owb.data.Module |
MODULE_FLATFILE, MODULE_GATEWAY_DB2, MODULE_GATEWAY_DRDA, MODULE_GATEWAY_INFORMIX, MODULE_GATEWAY_ODBC, MODULE_GATEWAY_OTHER, MODULE_GATEWAY_RDB, MODULE_GATEWAY_SQLSERVER, MODULE_GATEWAY_SYBASE, MODULE_GATEWAY_TERRADATA, MODULE_ORACLE, MODULE_ORACLE_APPS, MODULE_PROCESS_FLOW, MODULE_SAP |
| Fields inherited from interface oracle.owb.metadatamgmt.changemgmt.Snapshotable |
MAX_DEPENDENCY_DEPTH, MIN_DEPENDENCY_DEPTH |
| Method Summary | |
AdvancedQueue |
createAdvancedQueue(java.lang.String name)Creates an AdvancedQueue with the given name in this OracleModule. |
Cube |
createCube(java.lang.String name)Creates a cube in the Oracle Module. |
Dimension |
createDimension(java.lang.String name)Creates a dimension in the Oracle Module. |
ExternalTable |
createExternalTable(java.lang.String name)Creates an external table in the Oracle Module. |
Function |
createFunction(java.lang.String name)Creates a function in the Oracle Module. |
Map |
createMap(java.lang.String name)Creates a map in the Oracle Module. |
MaterializedView |
createMaterializedView(java.lang.String name)Creates a materialized view in the Oracle Module. |
ObjectType |
createObjectType(java.lang.String name)Creates an ObjectType with the given name in this OracleModule. |
Package |
createPackage(java.lang.String name)Creates a package in the Oracle Module. |
Procedure |
createProcedure(java.lang.String name)Creates a procedure in the Oracle Module. |
Sequence |
createSequence(java.lang.String name)Creates a sequence in the Oracle Module. |
Table |
createTable(java.lang.String name)Creates a table in the Oracle Module. |
View |
createView(java.lang.String name)Creates a view in the Oracle Module. |
AdvancedQueue |
findAdvancedQueue(java.lang.String name)Retrieves an AdvancedQueue with the given name from this OracleModule. |
Cube |
findCube(java.lang.String name)Retrieve the cube object based on its name. |
Dimension |
findDimension(java.lang.String name)Retrieve the dimension object based on its name. |
ExternalTable |
findExternalTable(java.lang.String name)Retrieve the external table object based on its name. |
Function |
findFunction(java.lang.String name)Retrieve the function object based on its name. |
Map |
findMap(java.lang.String name)Retrieve the map object based on its name. |
MaterializedView |
findMaterializedView(java.lang.String name)Retrieve the materizlied view object based on its name. |
ObjectType |
findObjectType(java.lang.String name)Retrieves an ObjectType with the given name from this OracleModule. |
Package |
findPackage(java.lang.String name)Retrieve the package object based on its name. |
Procedure |
findProcedure(java.lang.String name)Retrieve the procedure object based on its name. |
Sequence |
findSequence(java.lang.String name)Retrieve the sequence object based on its name. |
Table |
findTable(java.lang.String name)Retrieve the table object based on its name. |
View |
findView(java.lang.String name)Retrieve the view object based on its name. |
java.lang.String[] |
getAdvancedQueueNames()Gets names of all the AdvancedQueues in this OracleModule. |
java.lang.String[] |
getCubeNames()Get the names of all cubes owned by this Oracle module. |
java.lang.String[] |
getDimensionNames()Get the names of all dimensions owned by this Oracle module. |
java.lang.String[] |
getExternalTableNames()Get the names of all external tables owned by this Oracle module. |
java.lang.String[] |
getFunctionNames()Get the names of all functions owned by this Oracle module. |
Function[] |
getFunctions(java.lang.String name)Search a function by name in this Oracle Module. |
java.lang.String[] |
getMapNames()Get the names of all maps owned by this Oracle module. |
java.lang.String[] |
getMaterializedViewNames()Get the names of all maternalized views owned by this Oracle module. |
java.lang.String[] |
getObjectTypeNames()Gets names of all the ObjectTypes in this OracleModule. |
java.lang.String[] |
getPackageNames()Get the names of all packages owned by this Oracle module. |
java.lang.String[] |
getProcedureNames()Returns the procedure names value. |
Procedure[] |
getProcedures(java.lang.String name)Search procedures by name in this Oracle Module. |
Project |
getProject()Retrieve the parent project for this Oracle Module. |
java.lang.String[] |
getSequenceNames()Get the names of all sequences owned by this Oracle module. |
java.lang.String[] |
getTableNames()Get the names of all tables owned by this Oracle module. |
java.lang.String[] |
getViewNames()Get the names of all views owned by this Oracle module. |
| Methods inherited from interface oracle.owb.data.Module |
getDatatypeSet, getLocation, setLocation |
| Methods inherited from interface oracle.owb.foundation.Folder |
findChild, getContentTypes, getFolderContents, getFolderContentsOfType, isCascadeForSnapshot, lockShared, lockWithContents, reloadWithContents, setCascadeForSnapshot |
| Methods inherited from interface oracle.owb.foundation.Component |
getOwningFolder, isReloadNeeded, lock, reload, unlock |
| Methods inherited from interface oracle.owb.foundation.OWBNamedObject |
delete, getBusinessName, getClassDefinition, getComponent, getDescription, getName, getUOID, isDeletable, isEditable, isRenamable, setBusinessName, setDescription, setName |
| Methods inherited from interface oracle.owb.metadatamgmt.changemgmt.Snapshotable |
compare, compare, compare, compare, createSnapshot, createSnapshot, createSnapshotWithDependeeComponents, createSnapshotWithDependeeComponents, getSnapshots |
| Methods inherited from interface oracle.owb.compile.ValidatableObject |
validate |
| Methods inherited from interface oracle.owb.foundation.property.PropertyOwner |
getDefaultPropertyValue, getLogicalPropertyKeys, getPhysicalPropertyKeys, getPropertyDomain, getPropertyKeys, getPropertyValue, getPropertyValueString, isLogicalProperty, isPhysicalProperty, isReadOnlyProperty, setPropertyValue, setPropertyValueByString |
| Method Detail |
public Project getProject()
getProject in interface Modulepublic java.lang.String[] getTableNames()
public Table createTable(java.lang.String name)
throws NameSpaceException,
InvalidFormatException
name - the name of the new table.NameSpaceException - if table name is not unique.InvalidFormatException - if the name is invalid.public Table findTable(java.lang.String name)
name - the name of the table to find.public java.lang.String[] getExternalTableNames()
public ExternalTable createExternalTable(java.lang.String name)
throws NameSpaceException,
InvalidFormatException
name - the name of the new external table.NameSpaceException - if external table name is not unique.InvalidFormatException - if the name is invalid.public ExternalTable findExternalTable(java.lang.String name)
name - the name of the external table to find.public java.lang.String[] getViewNames()
public View createView(java.lang.String name)
throws NameSpaceException,
InvalidFormatException
name - the name of the new view.NameSpaceException - if view name is not unique.InvalidFormatException - if the name is invalid.public View findView(java.lang.String name)
name - the name of the view to find.public java.lang.String[] getMaterializedViewNames()
public MaterializedView createMaterializedView(java.lang.String name)
throws NameSpaceException,
InvalidFormatException
name - the name of the new materialized view.NameSpaceException - if the materialized view name is not unique.InvalidFormatException - if the name is invalid.public MaterializedView findMaterializedView(java.lang.String name)
name - the name of the materialized view to find.public java.lang.String[] getSequenceNames()
public Sequence createSequence(java.lang.String name)
throws NameSpaceException,
InvalidFormatException
name - the name of the new sequence.NameSpaceException - if the sequence name is not unique.InvalidFormatException - if the name is invalid.public Sequence findSequence(java.lang.String name)
name - the name of the sequence to find.public java.lang.String[] getCubeNames()
public Cube createCube(java.lang.String name)
throws NameSpaceException,
InvalidFormatException
name - the name of the new cube.NameSpaceException - if the cube name is not unique.InvalidFormatException - if the name is invalid.public Cube findCube(java.lang.String name)
name - the name of the cube to find.public java.lang.String[] getDimensionNames()
public Dimension createDimension(java.lang.String name)
throws NameSpaceException,
InvalidFormatException
name - the name of the new dimension.NameSpaceException - if the dimension name is not unique.InvalidFormatException - if the name is invalid.public Dimension findDimension(java.lang.String name)
name - the name of the dimension to find.public java.lang.String[] getMapNames()
public Map createMap(java.lang.String name)
throws NameSpaceException,
InvalidFormatException
name - the name of the new map.NameSpaceException - if the map name is not unique.InvalidFormatException - if the name is invalid.public Map findMap(java.lang.String name)
name - the name of the map to find.public java.lang.String[] getPackageNames()
public Package createPackage(java.lang.String name)
throws NameSpaceException,
InvalidFormatException
name - the name of the new package.NameSpaceException - if the package name is not unique.InvalidFormatException - if the name is invalid.public Package findPackage(java.lang.String name)
name - the name of the package to find.
public ObjectType createObjectType(java.lang.String name)
throws NameSpaceException,
InvalidFormatException
name - of the ObjectType to be createdNameSpaceException - if the name of the ObjectType is not unique.InvalidFormatException - if the name is invalid.
public ObjectType findObjectType(java.lang.String name)
throws OWBException
name - of the ObjectType to be retrievedOWBException
public java.lang.String[] getObjectTypeNames()
throws OWBException
OWBException
public AdvancedQueue createAdvancedQueue(java.lang.String name)
throws NameSpaceException,
InvalidFormatException
name - of the AdvancedQueue to be createdNameSpaceException - if the name of the AdvancedQueue is not unique.InvalidFormatException - if the name is invalid.
public AdvancedQueue findAdvancedQueue(java.lang.String name)
throws OWBException
name - of the AdvancedQueue to be retrievedOWBException
public java.lang.String[] getAdvancedQueueNames()
throws OWBException
OWBExceptionpublic java.lang.String[] getFunctionNames()
public Function createFunction(java.lang.String name)
throws NameSpaceException,
InvalidFormatException
name - the name of the new function.NameSpaceException - if the function name is not unique.InvalidFormatException - if the name is invalid.
public Function findFunction(java.lang.String name)
throws OWBException
name - the name of the function to find.OWBExceptionpublic Function[] getFunctions(java.lang.String name)
name - the name of the function to be foundpublic java.lang.String[] getProcedureNames()
public Procedure createProcedure(java.lang.String name)
throws NameSpaceException,
InvalidFormatException
name - the name of the new procedure.NameSpaceException - if the procedure name is not unique.InvalidFormatException - if the name is invalid.
public Procedure findProcedure(java.lang.String name)
throws OWBException
name - the name of the procedure to find.OWBExceptionpublic Procedure[] getProcedures(java.lang.String name)
name - the name of the procedure to be found
|
Oracle Warehouse Builder Java API Reference 10g Release 1 (10.1) B12155-01 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||