Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 2 of 2 total
Thread Disable Trigger in another trigger
Wed, Jan 19 2011 7:20 PMPermanent Link

Tobias

It is possible to disable trigger in another trigger?
Somthing like this:

  DISABLE TRIGGER "TrigAfterPictDelete" ON "DepPictures";
  EXECUTE IMMEDIATE 'DELETE FROM DepPictures WHERE ID = ?' USING OLDROW.ID;
  ENABLE TRIGGER "TrigAfterPictDelete" ON "DepPictures";

This code return error #700, but may be there are other way?
Thu, Jan 20 2011 2:58 PMPermanent Link

Tobias

EXECUTE IMMEDIATE 'DISABLE TRIGGER "TrigAfterPictDelete" ON "DepPictures"';

Smile
Image