Temporal Tables - 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

When using the Stream operator to load data into temporal tables, the temporal qualifiers, such as CURRENT VALIDTIME and SEQUENCED VALIDTIME, must precede the DML statements, as in the following example.

APPLY
('SEQUENCED VALIDTIME INSERT INTO <target table> ... ;')
 TO OPERATOR (STREAM_OPERATOR)
SELECT * FROM OPERATOR (<producer operator>);

When using an atomic Upsert, the temporal qualifier must precede the UPDATE statement, not the INSERT statement, as in the following example.

APPLY
('SEQUENCED VALIDTIME UPDATE <target table> SET ... WHERE ... ;',
 'INSERT INTO <target table> ... ;')
 INSERT FOR MISSING UPDATE ROWS
 TO OPERATOR (STREAM_OPERATOR)
SELECT * FROM OPERATOR (<producer operator>);