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