Example: Verifying the Ending Bound of a Transaction Time Column - Advanced SQL Engine - Teradata Database

SQL Functions, Expressions, and Predicates

Product
Advanced SQL Engine
Teradata Database
Release Number
17.05
17.00
Published
June 2020
Language
English (United States)
Last Update
2021-01-30
dita:mapPath
tpt1555966086716.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1145
lifecycle
previous
Product Category
Teradata Vantageā„¢

The following example uses IS [NOT] UNTIL_CLOSED in the PPI partitioning expression to check whether or not the ending bound of a transaction time column is UNTIL_CLOSED.

   CREATE TABLE TESTUC
     (A  INTEGER,
      B  PERIOD (TIMESTAMP (6) WITH TIME ZONE) NOT NULL AS TRANSACTIONTIME,
      C INTEGER)
     PRIMARY INDEX (A)
     PARTITION BY
        CASE_N (END (b) IS UNTIL_CHANGED,
                END (b) IS NOT UNTIL_CHANGED, UNKNOWN);