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