Select from following answers:- DISABLE TRIGGER Sales.Order_Count ON Sales
- ALTER TRIGGER Sales.Order_Count ON Sales
- ENABLE TRIGGER Sales.Order_Count ON Sales
- All Above
This statement used to disable the trigger that applies to the Sales table.
You should not use the ENABLE TRIGGER statement. This statement enables the trigger rather than disabling it.
ALTER TRIGGER statement modifies the trigger, but it cannot be used to disable the trigger.
Show Correct Answer
Source: Measureup.com | |
Alert Moderator