Load Operator as Standalone Operator - Parallel Transporter

Teradata® Parallel Transporter Reference

Product
Parallel Transporter
Release Number
17.00
Published
November 2020
Language
English (United States)
Last Update
2022-02-03
dita:mapPath
ric1544831938741.ditamap
dita:ditavalPath
obe1474387269547.ditaval
dita:id
B035-2436
lifecycle
previous
Product Category
Teradata Tools and Utilities

In addition to its other capabilities, the Load operator can function as a standalone operator and supports an APPLY statement with no SELECT statement and no INSERT statement. To use LOAD as a standalone operator, use one of the following definitions:

TYPE LOAD STANDALONE
TYPE LOAD
The STANDALONE keyword is optional.

In the following example, the STANDALONE keyword is omitted:

DEFINE JOB LOAD_USER_DATA
(
    DEFINE OPERATOR LOAD_OPERATOR
    TYPE LOAD
    (
      .
      .
      .
   );

      .
      .
      .

    APPLY
    TO OPERATOR (LOAD_OPERATOR[1]);
);
Use LOAD as a standalone operator to apply data on the target table without sending more data.