![]() |
Copyright © TIBCO Software Inc. All rights reserved. |
The wait table holds information about each outstanding wait on the system.TABLE wait (
wait_id number(10) NOT NULL,
node_id number(5) NOT NULL,
proc_id number(5) NOT NULL,
casenum number(20) NOT NULL,
parentstep varchar2(8) NULL,
expression varchar2(200) NULL,
type number(1) NOT NULL)
Wait type. Currently the only supported type is a Step wait (1), that is, the step is waiting for one or more other steps to be released.
node_id
proc_id
casenum
This key enforces the DELETE CASCADE referential action.
The wait table contains one row for each outstanding wait on the system. An associated record exists in the wait_step table for each step being waited for.
![]() |
Copyright © TIBCO Software Inc. All rights reserved. |