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

Workload table has one entry for each workload defined in the database.

Workload Table Definition

The following CREATE TABLE request defines the Workload table:

   CREATE TABLE Workload(
     WorkloadID       INTEGER NOT NULL,
     WorkloadName     VARCHAR128 CHARACTER SET UNICODE
                      UPPERCASE NOT CASESPECIFIC NOT NULL,
     CreatedTimeStamp TIMESTAMP(6) NOT NULL,
     LastModified     TIMESTAMP(6) NOT NULL,
     CreatorName      VARCHAR128 CHARACTER SET UNICODE
                      NOT CASESPECIFIC)
   UNIQUE PRIMARY INDEX(WorkLoadName),
   UNIQUE INDEX(WorkLoadID);

Attribute Definitions for Workload

The following table defines the Workload table attributes:

Attribute Definition
WorkloadID
  • Internally generated unique (within the database) identifier for the workload.
  • USI for the table.
WorkloadName
  • User-specified unique workload name.
  • UPI for the table.
CreatedTimeStamp Timestamp when the workload was created.
LastModified Timestamp when the workload was last modified.
CreatorName Name of the user that created the workload.