Trigger Previous topic Chapter index Next topic

ANWENDERGRUPPEN_AFTER_DEL

 

Beschreibung

Delete-Trigger für die Replikation

 

Definition

CREATE TRIGGER ANWENDERGRUPPEN_AFTER_DEL FOR ANWENDERGRUPPEN
INACTIVE AFTER DELETE POSITION 0
as
begin if (USER <> 'REPLICATION') then begin
insert into replication (tid,tablename,modus,rtid,idname,reptime) values (old.agid,'ANWENDERGRUPPEN',3,26,'AGID','now');
end
end

 

     Previous topic Chapter index Next topic