Using Job Steps - Parallel Transporter

Teradata® Parallel Transporter User Guide - 17.20

Deployment
VantageCloud
VantageCore
Edition
Enterprise
IntelliFlex
Lake
VMware
Product
Parallel Transporter
Release Number
17.20
Published
June 2022
Language
English (United States)
Last Update
2023-08-25
dita:mapPath
uzp1645128359760.ditamap
dita:ditavalPath
tvt1507315030722.ditaval
dita:id
B035-2445
Product Category
Teradata Tools and Utilities

Job steps are executed in the order in which they appear within the DEFINE JOB statement. Each job step must complete before the next step can begin. For example, the first job step could execute a DDL operator to create a target table. The second step could execute a Load operator to load the target table. A final step could then execute a cleanup operation.

The following is a sample of implementing multiple job steps:
DEFINE JOB multi-step
(
      DEFINE SCHEMA...;
      DEFINE SCHEMA...;

      DEFINE OPERATOR...;
      DEFINE OPERATOR...;

      STEP first_step
      (
       APPLY...; /* DDL step */
      );

      STEP second_step
      (
       APPLY...; /* DML step */
      );

      STEP third_step
      (
       APPLY...; /* DDL step */
      );
);