Beschreibung
Delete-Trigger für die Replikation
Definition
CREATE TRIGGER SRE_ITEMTEMPLATES_AFTER_DEL FOR SRE_ITEMTEMPLATES
INACTIVE AFTER DELETE POSITION 0
as
begin
if (USER <> 'REPLICATION') then
begin
insert into replication (tid, tablename, modus, rtid, idname, reptime)
values (old.itid, 'SRE_ITEMTEMPLATES', 3, 50, 'ITID', 'now');
end
end
![]() ![]() ![]() |