Trigger Previous topic Chapter index Next topic

TITELPERSONEN_AFTER_INS

 

Beschreibung

Insert-Trigger für die Replikation

 

Definition

CREATE TRIGGER TITELPERSONEN_AFTER_INS FOR TITELPERSONEN
INACTIVE AFTER INSERT POSITION 0
AS
  DECLARE VARIABLE DUMMY INTEGER;
BEGIN 
  IF (USER <> 'REPLICATION') THEN BEGIN
/* Tabelle aus 3 Primary Keys kann mit dem Replikations-Modul nicht repliziert werden! */
    DUMMY = 0; /* Dummy command */
  END
END

 

     Previous topic Chapter index Next topic