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