public interface IImportService
This interface provides all the import methods.
Three types of imports are available:
Importing an individual object means importing back an object that
has previously been exported from ODI in a XML file. You can define
under which parent object you want to import when duplicating an object.
The parent object must implement the IImportRoot
interface.
Importing a set of objects means that all the objects of an ODI module
have been exported and you want to import them back.
Sets are as follows:
Importing solutions have a special behavior. Please read the ODI documentation for more information.
Each import function has three mode available:
IExportService
,
IImportRoot
Modifier and Type | Field and Description |
---|---|
static int |
EXPORT_KEY_TRIES
Export key attempts : Max number of time user be allowed to enter export key.
|
static int |
IMPORT_MODE_DUPLICATION
Import in duplication mode : inserts a duplicated object.
|
static int |
IMPORT_MODE_SYNONYM_INSERT
Import in synonym mode insert : inserts the object "as it is"; fails if the object already exists or if a parent object does not exist.
|
static int |
IMPORT_MODE_SYNONYM_INSERT_UPDATE
Import in synonym mode insert update : inserts the object "as it is" if the object does not exist; updates if the object already exists.
|
static int |
IMPORT_MODE_SYNONYM_UPDATE
Import in synonym mode update : updates the object if it exists.
|
Modifier and Type | Method and Description |
---|---|
void |
importExecutionEnvironmentFromFolder(int pImportMode,
java.lang.String pFolderPath,
boolean pDeclareMissingRepository)
Deprecated.
use importExecutionEnvironmentFromFolder(int pImportMode, String pFolderPath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importExecutionEnvironmentFromFolder(int pImportMode,
java.lang.String pFolderPath,
boolean pDeclareMissingRepository,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports a previously exported execution environment objects set from a given folder.
Execution Environment objects include : Technologies, Connections, Contexts, Agents, Generic Actions |
void |
importExecutionEnvironmentFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository)
Deprecated.
use importExecutionEnvironmentFromZipFile(int pImportMode, String pZipFilePath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importExecutionEnvironmentFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports a previously exported execution environment objects set from a given zip file.
Execution Environment objects include : Technologies, Connections, Contexts, Agents, Generic Actions |
void |
importExecutionEnvironmentFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository,
java.lang.String pUnzipDirName)
Deprecated.
use importExecutionEnvironmentFromZipFile(int pImportMode, String pZipFilePath, boolean pDeclareMissingRepository, String pUnzipDirName, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importExecutionEnvironmentFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository,
java.lang.String pUnzipDirName,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports a previously exported execution environment objects set from a given zip file.
Execution Environment objects include : Technologies, Connections, Contexts, Agents, Generic Actions |
void |
importLogicalTopologyFromFolder(int pImportMode,
java.lang.String pFolderPath,
boolean pDeclareMissingRepository)
Deprecated.
use importLogicalTopologyFromFolder(int pImportMode, String pFolderPath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importLogicalTopologyFromFolder(int pImportMode,
java.lang.String pFolderPath,
boolean pDeclareMissingRepository,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports a previously exported Logical topology objects set from a given folder.
Logical Topology objects include : Technologies, Logical Agents, Logical Schemas, Actions Groups, Actions, Datatypes, Datatype Conversions |
void |
importLogicalTopologyFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository)
Deprecated.
use importLogicalTopologyFromZipFile(int pImportMode, String pZipFilePath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importLogicalTopologyFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports a previously exported logical topology objects set from a given zip file.
Logical Topology objects include : Technologies, Logical Agents, Logical Schemas, Actions Groups, Actions, Datatypes, Datatype Conversions |
void |
importLogicalTopologyFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository,
java.lang.String pUnzipDirName)
Deprecated.
use importLogicalTopologyFromZipFile(int pImportMode, String pZipFilePath, boolean pDeclareMissingRepository, String pUnzipDirName, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importLogicalTopologyFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository,
java.lang.String pUnzipDirName,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports a previously exported logical topology objects set from a given zip file.
Logical Topology objects include : Technologies, Logical Agents, Logical Schemas, Actions Groups, Actions, Datatypes, Datatype Conversions |
void |
importLogsFromFolder(java.lang.String pFolderPath)
Deprecated.
use importLogsFromFolder(String pFolderPath, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importLogsFromFolder(java.lang.String pFolderPath,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports the previously exported execution logs (load plan runs, sessions and related objects) from a given folder.
|
void |
importLogsFromZipFile(java.lang.String pZipFilePath)
Deprecated.
use importLogsFromZipFile(String pZipFilePath, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importLogsFromZipFile(java.lang.String pZipFilePath,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports the previously exported execution logs (load plan runs, sessions and related objects) from a given zip file.
|
void |
importLogsFromZipFile(java.lang.String pZipFilePath,
java.lang.String pUnzipDirName)
Deprecated.
use importLogsFromZipFile(String pZipFilePath, String pUnzipDirName, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importLogsFromZipFile(java.lang.String pZipFilePath,
java.lang.String pUnzipDirName,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports the previously exported execution logs (load plan runs, sessions and related objects) from a given zip file.
|
void |
importMasterFromFolder(int pImportMode,
java.lang.String pFolderPath,
boolean pDeclareMissingRepository)
Deprecated.
use importMasterFromFolder(int pImportMode, String pFolderPath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importMasterFromFolder(int pImportMode,
java.lang.String pFolderPath,
boolean pDeclareMissingRepository,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports a previously exported master objects set from a given folder.
Master objects include : Objects, Methods, Profiles, Users, Languages, Versions, Solutions, Open Tools, Password rules & polices, Entities, Links, Fields, Lookups |
void |
importMasterFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository)
Deprecated.
use importMasterFromZipFile(int pImportMode, String pZipFilePath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importMasterFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports a previously exported master objects set from a given zip file.
Master objects include : Objects, Methods, Profiles, Users, Languages, Versions, Solutions, Open Tools, Password rules & polices, Entities, Links, Fields, Lookups |
void |
importMasterFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository,
java.lang.String pUnzipDirName)
Deprecated.
use importMasterFromZipFile(int pImportMode, String pZipFilePath, boolean pDeclareMissingRepository, String pUnzipDirName, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importMasterFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository,
java.lang.String pUnzipDirName,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports a previously exported master objects set from a given zip file.
Master objects include : Objects, Methods, Profiles, Users, Languages, Versions, Solutions, Open Tools, Password rules & polices, Entities, Links, Fields, Lookups |
void |
importObjectFromXml(int pImportMode,
java.lang.String pFileName,
boolean pDeclareMissingRepository)
Deprecated.
use importObjectFromXml(int pImportMode, String pFileName, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importObjectFromXml(int pImportMode,
java.lang.String pFileName,
boolean pDeclareMissingRepository,
char[] pExportKey,
boolean pImportWithoutCipherData)
This method imports an object from an OracleDI export file (XML).
|
void |
importObjectFromXml(int pImportMode,
java.lang.String pFileName,
IImportRoot pObjectParent,
boolean pDeclareMissingRepository)
Deprecated.
use importObjectFromXml(int pImportMode, String pFileName, IImportRoot pObjectParent, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importObjectFromXml(int pImportMode,
java.lang.String pFileName,
IImportRoot pObjectParent,
boolean pDeclareMissingRepository,
char[] pExportKey,
boolean pImportWithoutCipherData)
This method imports an object from an OracleDI export file (XML) under a parent object.
|
void |
importReplaceProcedure(OdiProcedure pOdiProcedure,
java.lang.String pXmlFilePath,
boolean pDeclareMissingRepository)
Deprecated.
use importReplaceProcedure(OdiProcedure pOdiProcedure, String pXmlFilePath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importReplaceProcedure(OdiProcedure pOdiProcedure,
java.lang.String pXmlFilePath,
boolean pDeclareMissingRepository,
char[] pExportKey,
boolean pImportWithoutCipherData)
Replace an existing procedure with a procedure previously exported procedure in a XML file.
|
void |
importReplaceScenario(OdiScenario pOdiScenario,
java.lang.String pXmlFilePath,
boolean pDeclareMissingRepository)
Deprecated.
use importReplaceScenario(OdiScenario pOdiScenario, String pXmlFilePath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importReplaceScenario(OdiScenario pOdiScenario,
java.lang.String pXmlFilePath,
boolean pDeclareMissingRepository,
char[] pExportKey,
boolean pImportWithoutCipherData)
Replace an existing scenario with a procedure previously exported procedure in a XML file.
|
void |
importReplaceSKM(OdiSKM pOdiSKM,
java.lang.String pXmlFilePath,
boolean pDeclareMissingRepository)
Deprecated.
use importReplaceSKM(OdiSKM pOdiSKM,String pXmlFilePath,boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importReplaceSKM(OdiSKM pOdiSKM,
java.lang.String pXmlFilePath,
boolean pDeclareMissingRepository,
char[] pExportKey,
boolean pImportWithoutCipherData)
Replace an existing SKM with other SKM in a XML file
|
void |
importSecurityFromFolder(int pImportMode,
java.lang.String pFolderPath,
boolean pDeclareMissingRepository)
Deprecated.
use importSecurityFromFolder(int pImportMode, String pFolderPath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importSecurityFromFolder(int pImportMode,
java.lang.String pFolderPath,
boolean pDeclareMissingRepository,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports a previously exported security objects set from a given folder.
Security objects include : Objects, Methods, Users, Profiles, Instances of Objects, Hosts, Password rules & policies |
void |
importSecurityFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository)
Deprecated.
use importSecurityFromZipFile(int pImportMode, String pZipFilePath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importSecurityFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports a previously exported security objects set from a given zip file.
Security objects include : Objects, Methods, Users, Profiles, Instances of Objects, Hosts, Password rules & policies |
void |
importSecurityFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository,
java.lang.String pUnzipDirName)
Deprecated.
use importSecurityFromZipFile(int pImportMode, String pZipFilePath, boolean pDeclareMissingRepository, String pUnzipDirName, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importSecurityFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository,
java.lang.String pUnzipDirName,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports a previously exported security objects set from a given zip file.
Security objects include : Objects, Methods, Users, Profiles, Instances of Objects, Hosts, Password rules & policies |
void |
importSessionsFromFolder(java.lang.String pFolderPath)
Deprecated.
use importLogsFromFolder instead
|
void |
importSessionsFromZipFile(java.lang.String pZipFilePath)
Deprecated.
use importLogsFromZipFile instead
|
void |
importSessionsFromZipFile(java.lang.String pZipFilePath,
java.lang.String pUnzipDirName)
Deprecated.
use importLogsFromZipFile instead
|
void |
importSolution(int pImportMode,
java.lang.String pZipFile,
boolean pDeclareMissingRepository)
Deprecated.
use importSolution(int pImportMode, String pZipFile, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importSolution(int pImportMode,
java.lang.String pZipFile,
boolean pDeclareMissingRepository,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports a solution and all its component objects from a zip file.
|
void |
importTopologyFromFolder(int pImportMode,
java.lang.String pFolderPath,
boolean pDeclareMissingRepository)
Deprecated.
use importTopologyFromFolder(int pImportMode, String pFolderPath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importTopologyFromFolder(int pImportMode,
java.lang.String pFolderPath,
boolean pDeclareMissingRepository,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports a previously exported topology objects set from a given folder.
Topology objects include : Entity IDs, Local Repositories, Connections, Hosts, Logical Agents, Agents, Generic Actions, Technologies, Datatypes, Datatypes conversions |
void |
importTopologyFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository)
Deprecated.
use importTopologyFromZipFile(int pImportMode, String pZipFilePath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importTopologyFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports a previously exported topology objects set from a given zip file.
Topology objects include : Entity IDs, Local Repositories, Connections, Hosts, Logical Agents, Agents, Generic Actions, Technologies, Datatypes, Datatypes conversions |
void |
importTopologyFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository,
java.lang.String pUnzipDirName)
Deprecated.
use importTopologyFromZipFile(int pImportMode, String pZipFilePath, boolean pDeclareMissingRepository, String pUnzipDirName, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importTopologyFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository,
java.lang.String pUnzipDirName,
char[] pExportKey,
boolean pImportWithoutCipherData)
Imports a previously exported topology objects set from a given zip file.
Topology objects include : Entity IDs, Local Repositories, Connections, Hosts, Logical Agents, Agents, Generic Actions, Technologies, Datatypes, Datatypes conversions |
void |
importWorkRepositoryFromFolder(int pImportMode,
java.lang.String pFolderPath,
boolean pDeclareMissingRepository)
Deprecated.
use importWorkRepositoryFromFolder(int pImportMode, String pFolderPath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importWorkRepositoryFromFolder(int pImportMode,
java.lang.String pFolderPath,
boolean pDeclareMissingRepository,
char[] pExportKey,
boolean pImportWithoutCipherData)
This method imports a previously exported work repository from a given folder.
|
void |
importWorkRepositoryFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository)
Deprecated.
use importWorkRepositoryFromZipFile(int pImportMode, String pZipFilePath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importWorkRepositoryFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository,
char[] pExportKey,
boolean pImportWithoutCipherData)
This method imports a previously exported work repository from a given zip file.
|
void |
importWorkRepositoryFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository,
java.lang.String pUnzipDirName)
Deprecated.
use importWorkRepositoryFromZipFile(int pImportMode, String pZipFilePath, boolean pDeclareMissingRepository, String pUnzipDirName, char[] pExportKey, boolean pImportWithoutCipherData) instead
|
void |
importWorkRepositoryFromZipFile(int pImportMode,
java.lang.String pZipFilePath,
boolean pDeclareMissingRepository,
java.lang.String pUnzipDirName,
char[] pExportKey,
boolean pImportWithoutCipherData)
This method imports a previously exported work repository from a given zip file.
|
boolean |
isExportKeyRequired(java.lang.String pImportSource)
Find out if Export Key is required for Import process
|
boolean |
isMasterImportFileLegacyCompatible(java.lang.String pImportSource)
Find out if master repository file being imported is in 12c or legacy mode.
|
void |
reimportTopologyReferenceData()
Re-import the default Topology data (ODI Technologies, DataTypes, DataType Conversions and Languages) definitions delivered with the release.
|
void |
setIsInterfaceUpgradedTo11gCompatibleMapping(boolean pUpgradedIntface11gCompatibleMap)
Set a flag that indicates whether any 11g Interfaces that are imported and upgraded to 12c Mappings result in
11g compatible mappings.
|
void |
setUpgradeKey(java.lang.String pUpgradeKey)
Set an upgrade key for temporary use for an ODI import.
|
void |
upgradeSnpConvDtGlobalIds()
Ensure that the Global Ids for Snp_Conv_Dt records (datatype conversions) are correct for the ODI 12.2.1.0.0 release.
|
static final int IMPORT_MODE_SYNONYM_INSERT
static final int IMPORT_MODE_SYNONYM_INSERT_UPDATE
static final int IMPORT_MODE_SYNONYM_UPDATE
static final int IMPORT_MODE_DUPLICATION
static final int EXPORT_KEY_TRIES
void importObjectFromXml(int pImportMode, java.lang.String pFileName, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException, java.io.IOException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pFileName
- the OracleDI XML export file.pImportMode
- Insert, Insert-update, Update or Duplication mode.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.java.io.IOException
- if the file doesn't existOdiImportException
- if the import fails.IllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importObjectFromXml(int pImportMode, java.lang.String pFileName, boolean pDeclareMissingRepository) throws OdiImportException, java.io.IOException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pFileName
- pDeclareMissingRepository
- OdiImportException
java.io.IOException
void importObjectFromXml(int pImportMode, java.lang.String pFileName, IImportRoot pObjectParent, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportNotSupportedException, OdiImportException, java.io.IOException
This method imports an object from an OracleDI export file (XML) under a parent object. The parent object must be persisted. The parent object will be refreshed.
When importing a KM, the import mode must be IMPORT_MODE_DUPLICATION
, otherwise it will throw an IllegalArgumentException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pFileName
- the OracleDI XML export file.pImportMode
- Insert, Insert-update, Update or Duplication mode.pObjectParent
- the object under which the object in the XML file will be importedpDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportNotSupportedException
- if the IImportRoot
doesn't support this import.java.io.IOException
- if the file doesn't existOdiImportException
- if the import fails.java.lang.IllegalArgumentException
- when importing a KM and the duplication mode is not IMPORT_MODE_DUPLICATION
IllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importObjectFromXml(int pImportMode, java.lang.String pFileName, IImportRoot pObjectParent, boolean pDeclareMissingRepository) throws OdiImportNotSupportedException, OdiImportException, java.io.IOException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pFileName
- pObjectParent
- pDeclareMissingRepository
- OdiImportNotSupportedException
OdiImportException
java.io.IOException
void importWorkRepositoryFromFolder(int pImportMode, java.lang.String pFolderPath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication mode.pFolderPath
- the folder containing all the XML files you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import failedIllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importWorkRepositoryFromFolder(int pImportMode, java.lang.String pFolderPath, boolean pDeclareMissingRepository) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pFolderPath
- pDeclareMissingRepository
- OdiImportException
void importWorkRepositoryFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository, java.lang.String pUnzipDirName, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication mode.pZipFilePath
- the Zip file containing all the XML files you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pUnzipDirName
- Directory to unzip files to when running the import. If null, then ODI will create a temporary directory "snpstemp" where the zip file is located.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import failedIllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importWorkRepositoryFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository, java.lang.String pUnzipDirName) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pZipFilePath
- pDeclareMissingRepository
- pUnzipDirName
- OdiImportException
void importWorkRepositoryFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication mode.pZipFilePath
- the Zip file containing all the XML files you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import failedIllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importWorkRepositoryFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pZipFilePath
- pDeclareMissingRepository
- OdiImportException
void importSecurityFromFolder(int pImportMode, java.lang.String pFolderPath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication modepFolderPath
- the folder containing all the XML files you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails.IllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importSecurityFromFolder(int pImportMode, java.lang.String pFolderPath, boolean pDeclareMissingRepository) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pFolderPath
- pDeclareMissingRepository
- OdiImportException
void importSecurityFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository, java.lang.String pUnzipDirName, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication modepZipFilePath
- the Zip file containing all the XML files you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pUnzipDirName
- Directory to unzip files to when running the import. If null, then ODI will create a temporary directory "snpstemp" where the zip file is located.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails.IllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importSecurityFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository, java.lang.String pUnzipDirName) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pZipFilePath
- pDeclareMissingRepository
- pUnzipDirName
- OdiImportException
void importSecurityFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication modepZipFilePath
- the Zip file containing all the XML files you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails.IllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importSecurityFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pZipFilePath
- pDeclareMissingRepository
- OdiImportException
void importTopologyFromFolder(int pImportMode, java.lang.String pFolderPath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication mode.pFolderPath
- the folder containing all the XML files you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails.IllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importTopologyFromFolder(int pImportMode, java.lang.String pFolderPath, boolean pDeclareMissingRepository) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pFolderPath
- pDeclareMissingRepository
- OdiImportException
void importTopologyFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository, java.lang.String pUnzipDirName, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication mode.pZipFilePath
- the Zip file containing all the XML files you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.pUnzipDirName
- Directory to unzip files to when running the import. If null, then ODI will create a temporary directory "snpstemp" where the zip file is located.OdiImportException
- if the import fails.IllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importTopologyFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository, java.lang.String pUnzipDirName) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pZipFilePath
- pDeclareMissingRepository
- pUnzipDirName
- OdiImportException
void importTopologyFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication mode.pZipFilePath
- the Zip file containing all the XML files you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails.IllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importTopologyFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pZipFilePath
- pDeclareMissingRepository
- OdiImportException
void importMasterFromFolder(int pImportMode, java.lang.String pFolderPath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication mode.pFolderPath
- the folder containing all the XML files you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails.IllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importMasterFromFolder(int pImportMode, java.lang.String pFolderPath, boolean pDeclareMissingRepository) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pFolderPath
- pDeclareMissingRepository
- OdiImportException
void importMasterFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository, java.lang.String pUnzipDirName, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication mode.pZipFilePath
- the Zip file containing all the XML files you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pUnzipDirName
- Directory to unzip files to when running the import. If null, then ODI will create a temporary directory "snpstemp" where the zip file is located.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails.IllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importMasterFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository, java.lang.String pUnzipDirName) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pZipFilePath
- pDeclareMissingRepository
- pUnzipDirName
- OdiImportException
void importMasterFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication mode.pZipFilePath
- the Zip file containing all the XML files you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails.IllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importMasterFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pZipFilePath
- pDeclareMissingRepository
- OdiImportException
void importExecutionEnvironmentFromFolder(int pImportMode, java.lang.String pFolderPath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication mode.pFolderPath
- the folder containing all the XML files you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails.IllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importExecutionEnvironmentFromFolder(int pImportMode, java.lang.String pFolderPath, boolean pDeclareMissingRepository) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pFolderPath
- pDeclareMissingRepository
- OdiImportException
void importExecutionEnvironmentFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository, java.lang.String pUnzipDirName, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication mode.pZipFilePath
- the Zip file containing all the XML files you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pUnzipDirName
- Directory to unzip files to when running the import. If null, then ODI will create a temporary directory "snpstemp" where the zip file is located.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails.IllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importExecutionEnvironmentFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository, java.lang.String pUnzipDirName) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pZipFilePath
- pDeclareMissingRepository
- pUnzipDirName
- OdiImportException
void importExecutionEnvironmentFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication mode.pZipFilePath
- the Zip file containing all the XML files you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails.IllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importExecutionEnvironmentFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pZipFilePath
- pDeclareMissingRepository
- OdiImportException
void importLogicalTopologyFromFolder(int pImportMode, java.lang.String pFolderPath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication mode.pFolderPath
- the folder containing all the XML files you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails.@Deprecated void importLogicalTopologyFromFolder(int pImportMode, java.lang.String pFolderPath, boolean pDeclareMissingRepository) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pFolderPath
- pDeclareMissingRepository
- OdiImportException
void importLogicalTopologyFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository, java.lang.String pUnzipDirName, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication mode.pZipFilePath
- the Zip file containing all the XML files you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pUnzipDirName
- Directory to unzip files to when running the import. If null, then ODI will create a temporary directory "snpstemp" where the zip file is located.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails.IllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importLogicalTopologyFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository, java.lang.String pUnzipDirName) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pZipFilePath
- pDeclareMissingRepository
- pUnzipDirName
- OdiImportException
void importLogicalTopologyFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication mode.pZipFilePath
- the Zip file containing all the XML files you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails.IllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importLogicalTopologyFromZipFile(int pImportMode, java.lang.String pZipFilePath, boolean pDeclareMissingRepository) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pZipFilePath
- pDeclareMissingRepository
- OdiImportException
void importSolution(int pImportMode, java.lang.String pZipFile, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
This method will execute in the surrounding transaction and all pending persisted changes will be flushed before import.
pImportMode
- Insert, Insert-update, Update or Duplication mode.pZipFile
- the Zip file containing the solution you want to import.pDeclareMissingRepository
- In synonym import, if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails.IllegalTransactionStateException
- if no surrounding transaction exists.@Deprecated void importSolution(int pImportMode, java.lang.String pZipFile, boolean pDeclareMissingRepository) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pImportMode
- pZipFile
- pDeclareMissingRepository
- OdiImportException
void importReplaceProcedure(OdiProcedure pOdiProcedure, java.lang.String pXmlFilePath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
pOdiProcedure
- the odiProcedure to replacepXmlFilePath
- the previously exported procedure xml file path.pDeclareMissingRepository
- if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails@Deprecated void importReplaceProcedure(OdiProcedure pOdiProcedure, java.lang.String pXmlFilePath, boolean pDeclareMissingRepository) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pOdiProcedure
- pXmlFilePath
- pDeclareMissingRepository
- OdiImportException
void importReplaceScenario(OdiScenario pOdiScenario, java.lang.String pXmlFilePath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
pOdiScenario
- the odiScenario to replacepXmlFilePath
- the previously exported scenario xml file path.pDeclareMissingRepository
- if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails@Deprecated void importReplaceScenario(OdiScenario pOdiScenario, java.lang.String pXmlFilePath, boolean pDeclareMissingRepository) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pOdiScenario
- pXmlFilePath
- pDeclareMissingRepository
- OdiImportException
void importReplaceSKM(OdiSKM pOdiSKM, java.lang.String pXmlFilePath, boolean pDeclareMissingRepository, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
pOdiSKM
- the odiSKM to replacepXmlFilePath
- exported SKM xml file pathpDeclareMissingRepository
- if the original repository of the original object is missing, if true, it will be referenced ; if false, the import will fail.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
@Deprecated void importReplaceSKM(OdiSKM pOdiSKM, java.lang.String pXmlFilePath, boolean pDeclareMissingRepository) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pOdiSKM
- pXmlFilePath
- pDeclareMissingRepository
- OdiImportException
void reimportTopologyReferenceData() throws OdiImportException
OdiImportException
- if the import failsvoid importSessionsFromFolder(java.lang.String pFolderPath) throws OdiImportException
pFolderPath
- folder containing logsOdiImportException
- if the import failsvoid importSessionsFromZipFile(java.lang.String pZipFilePath, java.lang.String pUnzipDirName) throws OdiImportException
pZipFilePath
- zip file containing logspUnzipDirName
- Directory to unzip files to when running the import. If null, then ODI will create a temporary directory "snpstemp" where the zip file is located.OdiImportException
- if the import failsvoid importSessionsFromZipFile(java.lang.String pZipFilePath) throws OdiImportException
pZipFilePath
- zip file containing logsOdiImportException
- if the import failsvoid importLogsFromFolder(java.lang.String pFolderPath, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
pFolderPath
- folder containing logspExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails@Deprecated void importLogsFromFolder(java.lang.String pFolderPath) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pFolderPath
- OdiImportException
void importLogsFromZipFile(java.lang.String pZipFilePath, java.lang.String pUnzipDirName, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
pZipFilePath
- zip file containing logspUnzipDirName
- Directory to unzip files to when running the import. If null, then ODI will create a temporary directory "snpstemp" where the zip file is located.pExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails@Deprecated void importLogsFromZipFile(java.lang.String pZipFilePath, java.lang.String pUnzipDirName) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pZipFilePath
- pUnzipDirName
- OdiImportException
void importLogsFromZipFile(java.lang.String pZipFilePath, char[] pExportKey, boolean pImportWithoutCipherData) throws OdiImportException
pZipFilePath
- zip file containing logspExportKey
- The key that was used during export of object which is being imported now. This key is required for password/intellectual property cipher text migration.pImportWithoutCipherData
- boolean If pImportWithoutCipherData=true, the pExportKey parameter will be ignored and any cipher text value present in the import file will be imported as null
value. If pContinueWithoutValidKey=false, and pExportKey is valid, the cipher text data will be imported into the repository. If pImportWithoutCipherData=false and pExportKey is not valid, then import will abort.OdiImportException
- if the import fails@Deprecated void importLogsFromZipFile(java.lang.String pZipFilePath) throws OdiImportException
null
value.
- 11g and 12.1.2 XML file: All cipher text data will be imported correctly.pZipFilePath
- OdiImportException
void setUpgradeKey(java.lang.String pUpgradeKey)
pUpgradeKey
- value to use for the upgrade key for an import.void setIsInterfaceUpgradedTo11gCompatibleMapping(boolean pUpgradedIntface11gCompatibleMap)
pUpgradedIntface11gCompatibleMap
- flag that determines whether 11g interfaces are upgraded to an 11g compatible mapping.boolean isExportKeyRequired(java.lang.String pImportSource) throws OdiImportException
pImportSource
- Import file/directory pathOdiImportException
boolean isMasterImportFileLegacyCompatible(java.lang.String pImportSource) throws OdiImportException
fileName
- Import file/directory pathOdiImportException
void upgradeSnpConvDtGlobalIds() throws OdiImportException
OdiImportException
- if the import fails