Restart Teradata FastLoad Job & Load Second Data Source | Teradata FastLoad - Teradata FastLoadジョブの再開と第2のデータ ソースのロード - FastLoad

Teradata® FastLoad リファレンス - 17.20

Product
FastLoad
Release Number
17.20
Published
2022年10月10日
Language
日本語
Last Update
2022-11-21
dita:mapPath
ja-JP/dlf1641281592734.ditamap
dita:ditavalPath
ja-JP/vax1619194969834.ditaval
dita:id
B035-2411
Product Category
Teradata Tools and Utilities

次のTeradata FastLoadジョブ スクリプトは、前述の例で示したTeradata FastLoad表に 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 ;