Delete Task - MultiLoad

Teradata MultiLoad Reference

Product
MultiLoad
Release Number
15.10
Language
English (United States)
Last Update
2018-10-06
dita:id
B035-2409
lifecycle
previous
Product Category
Teradata Tools and Utilities
                /*****************************************************************/
                /* This task will delete all employees with less than            */
                /* 5 years experience from the employee table.                   */
                /*****************************************************************/
                .Logtable Logtable001;           /*  Logon to Teradata Database &*/
                .Logon tdpx/user,pwd;            /*  identify the restart table  */
                .Begin Delete Mload              /*  Specifydelete task and      */
                      Tables Employee;           /*  identify target table       */
                Delete From Employee             /*  The delete statement drops  */
                      Where YrsExp < 5;          /*  employees with <5 yrs exp.  */
                .End Mload;                      /*  Initiate MLOAD processing   */
                .Logoff;                         /*  Logoff Teradata Database    */