Restart Teradata FastLoad Job & Load Second Data Source | Teradata FastLoad - Restart the Teradata FastLoad Job and Loading the Second Data Source - FastLoad

Teradata® FastLoad Reference

Product
FastLoad
Release Number
17.00
Published
June 2020
Language
English (United States)
Last Update
2020-06-18
dita:mapPath
ije1544831946874.ditamap
dita:ditavalPath
obe1474387269547.ditaval
dita:id
B035-2411
lifecycle
previous
Product Category
Teradata Tools and Utilities

The following Teradata FastLoad job script loads the Teradata FastLoad table shown in the previous example with data from the data source named SecondFile:

LOGON tdpid/jwt,smart ;
BEGIN LOADING Fast_Table ERRORFILES Error_1, Error_2 ;
DEFINE Field_1 (char(5)), Field_2 (integer)
   FILE = SecondFile ;
INSERT INTO Fast_Table (col1, col2)
   VALUES (:Field_1, :Field_2) ;
LOGOFF ;