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