proc_deadline

The proc_deadline table stores definitions of procedure deadlines.

Structure

The proc_deadline table has the following structure:

TABLE proc_deadline(
node_id number(5) NOT NULL,
proc_id number(5) NOT NULL,
major_vers number(5) NOT NULL,
minor_vers number(5) NOT NULL,
pd_version number(7) NOT NULL,
dead_name varchar(32) NOT NULL,
event_name varchar(32) NOT NULL,
dead_value varchar(512) NOT NULL)

Column

Description

node_id

ID of the node that this procedure is defined on, as defined in the nodes table.

proc_id

Unique ID of this procedure, generated from the sequences table.

major_vers

The major version number of the procedure that this case belongs to, as defined in the proc_version table.

minor_vers

The minor version number of the procedure that this case belongs to, as defined in the proc_version table.

pd_version

Instance number of the procedure definition, as defined in the proc_instance table.

dead_name

The name of the case deadline.

event_name

The name of the event step that is triggered when the case deadline expires.

dead_value

The value of the case deadline. The value is specified in one of the following formats:

If the case deadline is specified as a period, then the value is in the:

minutes^hours^days^weeks^months^years format.

If the case deadline is specified as an expression, then the value is in the:

date expression^time expression format.

Primary Key

The following primary key is defined for this table.

Key Name

Column(s)

Index Tablespace

pk_proc_deadline

node_id
proc_id
pd_version
dead_name

BIGINDEXSPACE

Foreign Keys

The following foreign key is defined for this table.

Key Name

Column(s)

Referenced in Table...

fk_proc_deadline 1

node_id
proc_id
pd_version

proc_instance

Indexes

The following index is defined for this table.

Index Name

Column(s) Indexed

Tablespace

idx_proc_dl_fk

node_id
proc_id
pd_version

BIGINDEXSPACE

Storage

The following STORAGE values are defined for this table.

Value

Definition

Initial

BIGTABLESIZE

Percentage Increase

BIGTABLEPCTINCREASE

Tablespace

BIGINDEXSPACE

Table Activity

The proc_deadline table contains one or more rows for each instance of each procedure definition on the system. Rows are added, updated, and deleted in the following situations.

A row is...

When...

added

The deadlines are created.

updated

The deadlines are updated.

deleted

The deadlines are deleted.