RangePartExpr - Teradata Vantage

Teradata® VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Vantage
Published
January 2023
ft:locale
en-US
ft:lastEdition
2024-12-11
dita:mapPath
phg1621910019905.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
phg1621910019905

Function of RangePartExpr

Stores the individual details of a recommended range partitioning expression based on the RANGE_N function.

Each row in this table represents one range of a given RANGE_N function, where the range boundary values and range size are stored as SQL text strings. The set of rows belonging to a given RANGE_N function can be identified by its common values in columns WorkloadID, RecommendationID, and TableID, and can be ordered by a sequence value that is stored in the table.

See Partition Recommendations for information about the SQL text for recommended partitioning expressions.

RangePartExpr Table Definition

The following CREATE TABLE request defines the RangePartExpr table:

   CREATE SET TABLE RangePartExpr (
     WorkLoadID       INTEGER NOT NULL,
     RecommendationID INTEGER NOT NULL,
     TableID          BYTE(6) NOT NULL,
     TestColumn       VARCHAR128 CHARACTER SET UNICODE
                      NOT CASESPECIFIC NOT NULL,
     RangeStart       VARCHAR(18) CHARACTER SET UNICODE
                      NOT CASESPECIFIC NOT NULL,
     RangeEnd         VARCHAR(18) CHARACTER SET UNICODE
                      NOT CASESPECIFIC,
     RangeSize        VARCHAR(50) CHARACTER SET UNICODE
                      NOT CASESPECIFIC,
     RangeSequence    INTEGER NOT NULL )
   PRIMARY INDEX (RecommendationID, TableID);

Attribute Definitions for RangePartExpr

The following table defines the RangePartExpr table attributes.

Attribute Definition
WorkLoadID An identifier of the workload that was analyzed.

A component of the NUPI on RangePartExpr.

RecommendationID An identifier for the set of partitioning recommendations that this recommendation belongs to.

A component of the NUPI on RangePartExpr.

TableID Unique identifier for the table on which the partitioning expression recommendation is being made.
TestColumn Column name serving as the test_value in the RANGE_N function
RangeStart Starting boundary value for current range; stored in string representation
RangeEnd Ending boundary value for current range; stored in string representation
RangeSize Size of the current range as specified by an EACH clause
RangeSequence Sequence number of the current range within the function expression that can be used to define the ascending order of a set of ranges.

Values start at 1