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

Teradata® Parallel Transporter User Guide - 17.20

Deployment
VantageCloud
VantageCore
Edition
Enterprise
IntelliFlex
Lake
VMware
Product
Parallel Transporter
Release Number
17.20
Published
June 2022
Language
English (United States)
Last Update
2023-08-25
dita:mapPath
uzp1645128359760.ditamap
dita:ditavalPath
tvt1507315030722.ditaval
dita:id
B035-2445
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).