The global step is unique and optional. It defines default values that are automatically applied to any specific steps that omit those values. All properties are optional.
Property name | Description | Values | Default value |
multithread | Number of threads to use for parallel steps | Integer |
|
encoding | Encoding to considerer when reading files | String | UTF-8 |
path.exe.oracle | This property specifies the execution path for Oracle | String | None |
path.exe.mssql | This property specifies the execution path for MSSQL | String | None |
sqlmodel.path | Path of the SQL Model JSON file. It can be absolute or relative path The SQL MODEL file (sqlModel.json) contains all DB2 objects extracted from DDL files. It's generated automatically during the transformation and automatically stored in your project's database folder. | String | database/SQLMODEL.json |
The following configuration illustrates a global step configuration for Data Migrator
[Global] multithread=5 sqlmodel.path=projectTest/SQLMODEL.json encoding=CP037
With this configuration, by default, all steps will use:
5
threads for processingprojectTest/SQLMODEL.json
to locate the SQL Model JSON fileCP037
for character encoding.