Example 1 – Double-Quoted Values in Job Variables - Parallel Transporter

Teradata® Parallel Transporter User Guide

Product
Parallel Transporter
Release Number
17.10
Published
February 2022
Language
English (United States)
Last Update
2022-02-04
dita:mapPath
kyx1608578396289.ditamap
dita:ditavalPath
tvt1507315030722.ditaval
dita:id
B035-2445
lifecycle
previous
Product Category
Teradata Tools and Utilities

In you have the following line in the job variable file:

OP_NAME = “LOAD”

in the script:

DEFINE OPERATOR MyOperator
TYPE @OP_NAME 

will be replaced with the identifier, LOAD (note that the double quotes are omitted in the replacement).

Later, if you want to switch to using the Update Operator, you only need to update your job variable file to:

OP_NAME = “UPDATE”

and in the script:

DEFINE OPERATOR MyOperator
TYPE @OP_NAME 

will be replaced with the identifier, UPDATE (note that the double quotes are omitted in the replacement).