The outstanding_addr table holds information about each outstanding step on the system.
The outstanding_addr table has the following structure:
TABLE outstanding_addr (
rowid NUMERIC(15) NOT NULL GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1, CACHE 50),
node_id INTEGER NOT NULL,
proc_id INTEGER NOT NULL,
casenum NUMERIC(20) NOT NULL,
sentdate TIMESTAMP NOT NULL,
deadline SMALLINT NOT NULL,
deadline_exprired SMALLINT NOT NULL,
sub_procedure SMALLINT NOT NULL,
deaddate TIMESTAMP NOT NULL,
stepname VARCHAR(8) NOT NULL,
user_name VARCHAR(64) NOT NULL,
reqid NUMERIC(20) NOT NULL,
item_suspended SMALLINT ,
item_withdrawn SMALLINT ,
array_idx INTEGER NOT NULL)
The following indexes aredefined for this table.
The outstanding_addr table contains one row for each outstanding step on the system.