UsageUse this statement to disable a trigger on a table. If the trigger is already disabled, then this statement does nothing.
Triggers are enabled or disabled on a per-session basis, so this statement only affects the current session.
Examples
-- The following statement disables the UpdateNotes trigger
DISABLE TRIGGER "UpdateNotes" ON "Customer"
Required PrivilegesThe current user must be granted the ALTER privilege on the specified table in order to execute this statement. Please see the User Security topic for more information.
SQL 2003 Standard DeviationsThis statement deviates from the SQL 2003 standard in the following ways: