Examples (TMS IMPORT command)
TMS IMPORT
/INFILE TRANSFORMATIONS='file.xml'.
-
TMS IMPORT
reads 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 IMPORT
command 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
EXECUTE
command causes the transformations to be processed. When using this as part of a longer stream of syntax, you may be able to remove theEXECUTE
command to save some processing time.