Trigger Previous topic Chapter index Next topic

SET_EINST_ID

 

Beschreibung

Trigger um den Primary Key zu setzen.

 

Definition

CREATE TRIGGER SET_EINST_ID FOR EINSTELLUNGEN
ACTIVE BEFORE INSERT POSITION 0
AS
BEGIN
    new.ENID = gen_id(ENID_GEN, 2);
END

 

     Previous topic Chapter index Next topic