Examples – SET - MultiLoad

Teradata MultiLoad Reference

Product
MultiLoad
Release Number
16.10
Published
May 2017
Language
English (United States)
Last Update
2018-07-11
dita:mapPath
cgb1488824663145.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;