Skip to content

Commit

Permalink
MTK: alldomains description update
Browse files Browse the repository at this point in the history
  • Loading branch information
gvasquezvargas committed Feb 7, 2025
1 parent 4e5d31f commit ba516ee
Showing 1 changed file with 24 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ To control details of the migration, append migration options when you run Migra

The command options that work with Migration Toolkit are grouped by their behavior, as shown in the table.

| Feature | Relevant options |
|---------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [Offline migration options](#offline-migration-options) | -offlineMigration |
| [Import options](#import-options) | -sourcedbtype, -targetdbtype, -schemaOnly, -dataOnly |
| [Schema creation options](#schema-creation-options) | -dropSchema, -targetSchema |
| [Schema object selection options](#schema-object-selection-options) | -allTables, -tables, -excludeTables,<br /><br />-constraints, -ignoreCheckConstFilter,<br /><br />-skipCKConst, -skipFKConst,<br /><br />-skipColDefaultClause,<br /><br />-indexes, -triggers,<br /><br />-allViews, -views, -excludeViews,<br /><br />-allSequences, -sequences, -excludeSequences,<br /><br />-allProcs, -procs, -excludeProcs,<br /><br />-allFuncs, -funcs, -excludeFuncs,<br /><br />-checkFunctionBodies,<br /><br />-allPackages, -packages, -excludePackages,<br /><br />-allDomains,<br /><br />-allQueues, -queues, -excludeQueues<br /><br />-allRules,<br /><br />-allgroups, -groups |
| [Migration options](#migration-options) | -truncLoad, -enableConstBeforeDataLoad,<br /><br />-retryCount, -safeMode, -fastCopy,<br /><br />-analyze, vacuumAnalyze, -replaceNullChar,<br /><br />-copyDelimiter, -batchSize,<br /><br />-cpBatchSize, -lobBatchSize,<br /><br />-fetchSize, -filterProp<br /><br />-customColTypeMapping, -customColTypeMappingFile<br /><br />-mapVirtualToRegular |
| [Connection retry options](#connection-retry-options) | -connRetryCount, -connRetryInterval, -abortOnConnFailure |
| [Oracle-specific options](#oracle-specific-options) | -allUsers, -users,<br /><br />-allProfiles, -profiles,<br /><br />-importPartitionAsTable,<br /><br />-objectTypes,<br /><br />-copyViaDBLinkOra, -allDBLinks<br /><br />-allSynonyms, -allPublicSynonyms, -excludeSynonyms,<br /><br />-allPrivateSynonyms, -useOraCase,<br /><br />-skipUserSchemaCreation |
| [Miscellaneous options](#miscellaneous-options) | -help, -logDir, -logFileCount, -logFileSize, -logBadSQL -verbose, -version |
| [Migration options for parallel data loading](#migration-options-for-parallel-data-loading) | -loaderCount, -parallelLoadRowLimit, -tableLoaderLimit |
| [Specify options in file](mtk_command_options_in_file) | -optionsFile |
| Feature | Relevant options |
|---------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [Offline migration options](#offline-migration-options) | -offlineMigration |
| [Import options](#import-options) | -sourcedbtype, -targetdbtype, -schemaOnly, -dataOnly |
| [Schema creation options](#schema-creation-options) | -dropSchema, -targetSchema |
| [Schema object selection options](#schema-object-selection-options) | -allTables, -tables, -excludeTables,<br /><br />-constraints, -ignoreCheckConstFilter,<br /><br />-skipCKConst, -skipFKConst,<br /><br />-skipColDefaultClause,<br /><br />-indexes, -triggers,<br /><br />-allViews, -views, -excludeViews,<br /><br />-allSequences, -sequences, -excludeSequences,<br /><br />-allProcs, -procs, -excludeProcs,<br /><br />-allFuncs, -funcs, -excludeFuncs,<br /><br />-checkFunctionBodies,<br /><br />-allPackages, -packages, -excludePackages,<br /><br />-allDomains, -domains,<br /><br />-allQueues, -queues, -excludeQueues,<br /><br />-allRules,<br /><br />-allgroups, -groups |
| [Migration options](#migration-options) | -truncLoad, -enableConstBeforeDataLoad,<br /><br />-retryCount, -safeMode, -fastCopy,<br /><br />-analyze, vacuumAnalyze, -replaceNullChar,<br /><br />-copyDelimiter, -batchSize,<br /><br />-cpBatchSize, -lobBatchSize,<br /><br />-fetchSize, -filterProp,<br /><br />-customColTypeMapping, -customColTypeMappingFile,<br /><br />-mapVirtualToRegular |
| [Connection retry options](#connection-retry-options) | -connRetryCount, -connRetryInterval, -abortOnConnFailure |
| [Oracle-specific options](#oracle-specific-options) | -allUsers, -users,<br /><br />-allProfiles, -profiles,<br /><br />-importPartitionAsTable,<br /><br />-objectTypes,<br /><br />-copyViaDBLinkOra, -allDBLinks,<br /><br />-allSynonyms, -allPublicSynonyms, -excludeSynonyms,<br /><br />-allPrivateSynonyms, -useOraCase,<br /><br />-skipUserSchemaCreation |
| [Miscellaneous options](#miscellaneous-options) | -help, -logDir, -logFileCount, -logFileSize, -logBadSQL -verbose, -version |
| [Migration options for parallel data loading](#migration-options-for-parallel-data-loading) | -loaderCount, -parallelLoadRowLimit, -tableLoaderLimit |
| [Specify options in file](mtk_command_options_in_file) | -optionsFile |

<div id="offline_migration" class="registered_link"></div>

Expand Down Expand Up @@ -344,9 +344,20 @@ When migrating multiple schemas or all schemas (with the `-allSchemas` option),

For example: `-allSchemas -allPackages -excludePackages comp_schema.my_package1,finance_schema.mypackage2`

### `-domains <domain_list>`

Import the selected domain, enumeration, and composite types from the source database. `<domain_list>` is a comma-separated list of domain names with no intervening space characters.
This option is valid only when the source database is either PostgreSQL, EDB Postgres Advanced Server or Microsoft SQL Server and the target database is PostgreSQL or EDB Postgres Advanced Server.

!!!note
Composite user-defined types or UDTs aren't supported in migrations from Microsoft SQL Server. Only simple UDTs are supported.

Composite types hold multiple fields, a table, or structured data, whereas simple types represent a single value.
!!!

### `-allDomains`

Import all domain, enumeration, and composite types from the source database. This option is valid only when both the source and target are stored on a Postgres host.
Import all domain, enumeration, and composite types from the source database. This option is valid only when the source database is either PostgreSQL, EDB Postgres Advanced Server or Microsoft SQL Server and the target database is PostgreSQL or EDB Postgres Advanced Server.

### `-allQueues`

Expand Down

0 comments on commit ba516ee

Please sign in to comment.