IndexColumns - 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 IndexColumns

Captures the columns that form the index identified by IndexID during index analysis using INITIATE INDEX ANALYSIS.

INITIATE INDEX ANALYSIS is supported only on the Block File System on the primary cluster, not on the Object File System.

IndexColumns Table Definition

The following CREATE TABLE request defines the IndexColumns table:

   CREATE TABLE IndexColumns(
     WorkLoadID       INTEGER NOT NULL,
     RecommendationID INTEGER NOT NULL,
     TableID          BYTE(6) NOT NULL,
     IndexID          INTEGER NOT NULL,
     ColumnName       VARCHAR128 CHARACTER SET UNICODE
                      NOT CASESPECIFIC NOT NULL)
   PRIMARY INDEX ( RecommendationID, TableID, IndexID );

Attribute Definitions for IndexColumns

The following table defines the IndexColumns table attributes:

Attribute Definition
WorkloadID Uniquely identifies the workload analyzed to create this secondary index recommendation.
RecommendationID
  • Uniquely identifies the recommendation ID in the IndexRecommendations table.
  • Partial NUPI for the table.
TableID
  • Uniquely identifies the table ID in the IndexRecommendations table.
  • Partial NUPI for the table.
IndexID
  • Uniquely identifies the index in the IndexRecommendations table.
  • Partial NUPI for the table.
ColumnName The name of the column in the index.

The number of rows in IndexColumns for a given index is equal to the number of columns in the index, so any composite index has multiple rows associated with it.