Workload - Advanced SQL Engine - Teradata Database

SQL Request and Transaction Processing

Product
Advanced SQL Engine
Teradata Database
Release Number
17.10
Published
July 2021
Language
English (United States)
Last Update
2021-07-28
dita:mapPath
uqf1592445067244.ditamap
dita:ditavalPath
uqf1592445067244.ditaval
dita:id
B035-1142
lifecycle
previous
Product Category
Teradata Vantage™

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.