Trigger Previous topic Chapter index Next topic

MUSIKDETAIL_AFTER_INS

 

Beschreibung

Insert-Trigger für die Replikation

 

Definition

CREATE TRIGGER MUSIKDETAIL_AFTER_INS FOR MUSIKDETAIL
INACTIVE AFTER INSERT POSITION 0
as
begin if (USER <> 'REPLICATION')  then begin
insert into replication (tid,tablename,modus,rtid,idname,reptime) values (new.mdid,'MUSIKDETAIL',1,10,'MDID','now');
end
end

 

     Previous topic Chapter index Next topic