Examples (TMS IMPORT command)
TMS IMPORT
/INFILE TRANSFORMATIONS='file.xml'.
-
TMS IMPORTreads the file file.xml, converts the transformations from XML to command syntax, and applies them to the active dataset.
Using Backtransformations
TMS IMPORT
/INFILE TRANSFORMATIONS='workingDirectory/car_sales_transformations.xml'
MODE=BACK (PREDICTED=PRE_2 SUFFIX='_backtransformed').
EXECUTE.
- The
TMS IMPORTcommand reads the transformations in car_sales_transformations.xml and applies the backtransformation to PRE_2. - The new field containing the backtransformed values is named PRE_2_backtransformed.
- The
EXECUTEcommand causes the transformations to be processed. When using this as part of a longer stream of syntax, you may be able to remove theEXECUTEcommand to save some processing time.