Examples – SET - MultiLoad

Teradata® MultiLoad Reference

Product
MultiLoad
Release Number
16.20
Published
October 2018
Language
English (United States)
Last Update
2018-10-10
dita:mapPath
lsl1527114222348.ditamap
dita:ditavalPath
Audience_PDF_product_tpt_userguide_include.ditaval
dita:id
B035-2409
lifecycle
previous
Product Category
Teradata Tools and Utilities

Teradata MultiLoad supports concatenation of variables, using the SET command, such as:

.SET C TO 1;
.SET D TO 2;
.SET X TO &C.&D;

In this example, X evaluates to 12.

If a decimal point is added to the concatenated variables, then X evaluates to 1.2, as in:

.SET C TO 1;
.SET D TO 2;
.SET X TO &C..&D;