Activity table (DSN8C10.ACT)
The activity table describes the activities that can be performed during a project.
The activity table resides in database DSN8D12A and is created with the following statement:
CREATE TABLE DSN8C10.ACT
(ACTNO SMALLINT NOT NULL,
ACTKWD CHAR(6) NOT NULL,
ACTDESC VARCHAR(20) NOT NULL,
PRIMARY KEY (ACTNO) )
IN DSN8D12A.DSN8S12P
CCSID EBCDIC;
Content of the activity table
The following table shows the content of the columns in the activity table.
Column | Column name | Description |
---|---|---|
1 | ACTNO | Activity ID (the primary key) |
2 | ACTKWD | Activity keyword (up to six characters) |
3 | ACTDESC | Activity description |
The activity table has the following indexes.
Name | On column | Type of index |
---|---|---|
DSN8C10.XACT1 | ACTNO | Primary, ascending |
DSN8C10.XACT2 | ACTKWD | Unique, ascending |
Relationship to other tables
The activity table is a parent table of the project activity table, through a foreign key on column ACTNO.