Trigger Previous topic Chapter index Next topic

SYSTEMTABELLE_AFTER_INS

 

Beschreibung

Insert-Trigger für die Replikation

 

Definition

CREATE TRIGGER SYSTEMTABELLE_AFTER_INS FOR SYSTEMTABELLE
INACTIVE AFTER INSERT POSITION 0
as
begin if (USER <> 'REPLICATION')  then begin
insert into replication (tid,tablename,modus,rtid,idname,reptime) values (new.syid,'SYSTEMTABELLE',1,7,'SYID','now');
end
end

 

     Previous topic Chapter index Next topic