Trigger Previous topic Chapter index Next topic

TITEL_AFTER_INS_UP_UNTERTITEL

 

Beschreibung

Aktualisiert die UNTERTITEL Tabelle.

 

Definition

CREATE TRIGGER TITEL_AFTER_INS_UP_UNTERTITEL FOR TITEL
ACTIVE AFTER INSERT POSITION 1
as
begin
  IF (USER <> 'REPLICATION') THEN BEGIN
    execute procedure update_untertitel(new.tiid, new.tizusatztext);
  END
end

 

     Previous topic Chapter index Next topic