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