Script:
.LOGTABLE BKP.dwlogtable;
.logon 127.0.0.1/tduser,tduser;
.begin import mload tables BKP.customers1;
.layout custlayout;
.field ID * varchar(2);
.field NAME * varchar(6);
.dml label custdml;
insert into BKP.customers1 values(:ID,:NAME);
.import infile C:\mload_jobs\cust.txt
format vartext ','
layout custlayout
apply custdml;
.end mload;
.logoff;
O/P:
========================================================================
= =
= MultiLoad Utility Release MLOD.13.00.00.005 =
= Platform WIN32 =
= =
========================================================================
= =
= Copyright 1990-2009 Teradata Corporation. ALL RIGHTS RESERVED. =
= =
========================================================================
**** 07:06:53 UTY2411 Processing start date: THU JAN 28, 2016
========================================================================
= =
= Logon/Connection =
= =
========================================================================
0001 .LOGTABLE BKP.dwlogtable;
0002 .logon 127.0.0.1/tduser,;
**** 07:06:53 UTY8400 Teradata Database Release: 13.00.00.12
**** 07:06:53 UTY8400 Teradata Database Version: 13.00.00.12
**** 07:06:53 UTY8400 Default character set: ASCII
**** 07:06:53 UTY8400 Current RDBMS has interval support
**** 07:06:53 UTY8400 Current RDBMS has UDT support
**** 07:06:53 UTY8400 Maximum supported buffer size: 1M
**** 07:06:53 UTY8400 Data Encryption supported by RDBMS server
**** 07:06:54 UTY6211 A successful connect was made to the RDBMS.
**** 07:06:54 UTY6217 Logtable 'BKP.dwlogtable' has been created.
========================================================================
= =
= Processing Control Statements =
= =
========================================================================
0003 .begin import mload tables BKP.customers1;
========================================================================
= =
= Processing MultiLoad Statements =
= =
========================================================================
0004 .layout custlayout;
0005 .field ID * varchar(2);
0006 .field NAME * varchar(6);
0007 .dml label custdml;
0008 insert into BKP.customers1 values(:ID,:NAME);
0009 .import infile C:\mload_jobs\cust.txt
format vartext ','
layout custlayout
apply custdml;
0010 .end mload;
========================================================================
= =
= MultiLoad Initial Phase =
= =
========================================================================
**** 07:06:54 UTY0829 Options in effect for this MultiLoad import task:
. Sessions: One session per available amp.
. Checkpoint: 15 minute(s).
. Tenacity: 4 hour limit to successfully connect load sessions.
. Errlimit: No limit in effect.
. AmpCheck: In effect for apply phase transitions.
**** 07:06:54 UTY0817 MultiLoad submitting the following request:
Select NULL from BKP.dwlogtable where (LogType = 125) and (Seq = 1) and
(MloadSeq = 0);
**** 07:06:54 UTY0817 MultiLoad submitting the following request:
Select NULL from BKP.dwlogtable where (LogType = 120) and (Seq = 1);
**** 07:06:54 UTY0815 MLOAD session(s) connected: 2.
**** 07:06:54 UTY0817 MultiLoad submitting the following request:
BEGIN MLOAD BKP.customers1 WITH INTERVAL;
**** 07:06:54 UTY0805 RDBMS failure, 3807: Object 'BKP.customers1' does not exist.
========================================================================
= =
= Logoff/Disconnect =
= =
========================================================================
**** 07:06:54 UTY6215 The restart log table has NOT been dropped.
**** 07:06:54 UTY6212 A successful disconnect was made from the RDBMS.
**** 07:06:54 UTY2410 Total processor time used = '0.265202 Seconds'
. Start : 07:06:53 - THU JAN 28, 2016
. End : 07:06:54 - THU JAN 28, 2016
. Highest return code encountered = '12'.
Please help