Comparison of The Teradata Loading Utilities
Comparison of The Teradata Loading Utilities
Comparison of The Teradata Loading Utilities
The article contains comparison and main features of the data loading tools provided by Teradata.
The tutorial illustrates main features of Teradata Multiload , FastLoad and TPump (Parallel Data
Pump) and provides sample real-life uses of those tools.
Scroll down for the sample scripts which illustrate different ways to load a sample fixed-length
extract into a Teradata database using FastLoad, MultiLoad and Parallel Data Pump (TPump).
Use the following command to run load the ggclients.fastload file using Teradata FastLoad
script:
fastload < ggclients.fastload
SESSIONS 4;
ERRLIMIT 25;
logon tdpid/username,password;
define
wh_cust_no(char(10)), delim1(char(1)),
cust_name(char(200)), delim2(char(1)),
bal_amt(char(18)), delim3(char(1))
newlinechar(char(1))
file=insert.input;
SHOW;
END LOADING;
logoff;
.logtable inslogtable;
.logon tdpid/username,password;
.logoff;
.layout ggclilayout;
.field wh_cust_no 1 char(10);
.field cust_name 12 char(200);
.field bal_amt 213 char(18);
.dml label insertclidml;
.logoff;