Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Here's an example of the MettleCI Command Line being used to compile an entire DataStage project (using the 'compile' command provided by the 'datastage' namespace) :

Code Block
languagebash
# Npte that the example below uses the line continuation charactere ('\' on Unix or '^' on Windows)
# to aid readability, but your mettleci command line can all be on a single line if you prefer 

$> mettleci datastage compile \
   -domain test1-svcs.datamigrators.io:59445 -username isadmin -password isadminpwd \
   -server test1-engn.datamigrators.io -project dstage1 \
   -username isadmin -password isadminpwd
Analyzing assets to compile
Compilation folder location = C:\Apps\command-shell\log\compiliation
Attempting to compile with 4 working threads.
Compiling DataStage jobs...
 * Compile 'test2-engn.datamigrators.io/dstage1/Jobs/Load/EX_Account.pjb' - COMPLETED
 [SNIP]
 * Compile 'test2-engn.datamigrators.io/dstage1/Jobs/Load/TX_StockHolding.pjb' - COMPLETED
Compilation complete
$> 

...