Managing existing triggers
Fresh Fruit Delivery has asked you to act as the main administrator of their database.
A best practice when taking over an existing database is to get familiar with all the existing objects.
You'd like to start by looking at the existing triggers.
Latihan ini adalah bagian dari kursus
Building and Optimizing Triggers in SQL Server
Latihan interaktif praktis
Cobalah latihan ini dengan menyelesaikan kode contoh berikut.
-- Get the disabled triggers
SELECT name,
___,
___
FROM sys.triggers
WHERE ___ = 1;