Copyright © Cloud Software Group, Inc. All rights reserved. |
The proc_event table stores definitions of procedure events.The proc_event table has the following structure:TABLE proc_event(
node_id INTEGER NOT NULL,
proc_id INTEGER NOT NULL,
major_vers INTEGER NOT NULL,
minor_vers INTEGER NOT NULL,
pd_version INTEGER NOT NULL,
eventname VARCHAR(32) NOT NULL,
user_event_name VARCHAR(32) NOT NULL)
This key enforces the DELETE CASCADE referential action.
The proc_event 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.
Note: When updating a procedure event, the record related to this event is deleted and then a new record with the event changes is added in the table. Note: When updating a procedure event, the record related to this event is deleted and then a new record with the event changes is added in the table.
Copyright © Cloud Software Group, Inc. All rights reserved. |