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