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 UNIQUEIDENTIFIER ROWGUIDCOL NUMERIC(15) NOT NULL GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1, CACHE 50),
node_id number(5) NOT NULL,
proc_id number(5) NOT NULL,
casenum number(20) NOT NULL,
sentdate date NOT NULL,
deadline number(1) NOT NULL,
deadline_exprired number(1) NOT NULL,
sub_procedure number(1) NOT NULL,
deaddate date NOT NULL,
stepname varchar2(8) NOT NULL,
user_name varchar2(64) NOT NULL,
reqid number(20) NOT NULL,
item_suspended number(1) NOT NULL,
item_withdrawn number(1) NOT NULL,
array_idx number(5) NOT NULL)
The following indexes aredefined for this table.
The outstanding_addr table contains one row for each outstanding step on the system.