IniziaInizia gratis

Disabling a trigger

Fresh Fruit Delivery needs to make some changes to a couple of rows in the Orders table.

Earlier they asked for a trigger to prevent unwanted changes to the Orders table, but now that trigger is stopping them from making the necessary modifications.

You are asked to help them with the situation by temporarily stopping that trigger from firing.

Questo esercizio fa parte del corso

Building and Optimizing Triggers in SQL Server

Visualizza il corso

Istruzioni dell'esercizio

  • Pause the trigger execution to allow the company to make the changes.

Esercizio pratico interattivo

Prova a risolvere questo esercizio completando il codice di esempio.

-- Pause the trigger execution
___ TRIGGER PreventOrdersUpdate
ON ___;
Modifica ed esegui il codice