Trigger Previous topic Chapter index Next topic

SENDUNGEN_AFTER_INS

 

Beschreibung

Insert-Trigger für die Replikation

 

Definition

CREATE TRIGGER SENDUNGEN_AFTER_INS FOR SENDUNGEN
INACTIVE AFTER INSERT POSITION 0
as
begin if (USER <> 'REPLICATION')  then begin
insert into replication (tid,tablename,modus,rtid,idname,reptime) values (new.snid,'SENDUNGEN',1,4,'SNID','now');
end
end

 

     Previous topic Chapter index Next topic