Beschreibung
Update-Trigger für die Replikation
Definition
CREATE TRIGGER PERSONEN_AFTER_UP FOR PERSONEN
INACTIVE AFTER UPDATE POSITION 0
as
begin if (USER <> 'REPLICATION') then begin
insert into replication (tid,tablename,modus,rtid,idname,reptime) values (new.peid,'PERSONEN',2,19,'PEID','now');
end
end
![]() ![]() ![]() |