Trigger Previous topic Chapter index Next topic

GESCHLECHTER_AFTER_INS

 

Beschreibung

Insert-Trigger für die Replikation

 

Definition

CREATE TRIGGER GESCHLECHTER_AFTER_INS FOR GESCHLECHTER
INACTIVE AFTER INSERT POSITION 0
as
begin if (USER <> 'REPLICATION') then begin
insert into replication (tidchar,tablename,modus,rtid,idname,reptime) values (new.geid,'GESCHLECHTER',1,39,'GEID','now');
end
end

 

     Previous topic Chapter index Next topic