Beschreibung
Insert-Trigger für die Replikation
Definition
CREATE TRIGGER LABEL_AFTER_INS FOR LABEL
INACTIVE AFTER INSERT POSITION 0
as
begin if (USER <> 'REPLICATION') then begin
insert into replication (tid,tablename,modus,rtid,idname,reptime) values (new.laid,'LABEL',1,45,'LAID','now');
end
end
![]() ![]() ![]() |