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 [DOCKER] To use this property see path in Docker | 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.