DISABLE TRIGGER in Oracle
ORACLE DISABLE TRIGGER As the name itself suggests, this type of trigger is used to disable an already existing or newly created trigger for a table from the database. To serve this purpose ALTER TRIGGER statement is used. Syntax: ALTER TRIGGER trigger_name DISABLE; Parameters: trigger_name: It is used to specify the name of the trigger … Read more