stcwp
Database
Tables
(current)
Columns
Constraints
Relationships
Orphan Tables
Anomalies
Routines
STCW.TR_PROC_PROC_COLLECTION_ID_SEQ
Parameters
Name
Type
Mode
Definition
TRIGGER "STCW"."TR_PROC_PROC_COLLECTION_ID_SEQ" before insert on "PROCESS_PROCESS_COLLECTION" for each row begin if inserting then if :NEW."PROCESS_PROCESS_COLLECTION_ID" is null then select PROCESS_PROCESS_COLLECTION_SEQ.nextval into :NEW."PROCESS_PROCESS_COLLECTION_ID" from dual; end if; end if; end;