Workload table has one entry for each workload defined in the database.
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);
The following table defines the Workload table attributes.
Attribute |
Definition |
WorkloadID |
|
WorkloadName |
|
CreatedTimeStamp |
Timestamp when the workload was created. |
LastModified |
Timestamp when the workload was last modified. |
CreatorName |
Name of the user that created the workload. |