始める無料で始める

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.

この演習はコースの一部です

Building and Optimizing Triggers in SQL Server

コースを見る

実践的なインタラクティブ演習

このサンプルコードを完成させて、この演習に挑戦してみましょう。

-- Get the disabled triggers
SELECT name,
	   ___,
	   ___
FROM sys.triggers
WHERE ___ = 1;
コードを編集して実行