ComenzarEmpieza gratis

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.

Este ejercicio forma parte del curso

Building and Optimizing Triggers in SQL Server

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio completando el código de muestra.

-- Get the disabled triggers
SELECT name,
	   ___,
	   ___
FROM sys.triggers
WHERE ___ = 1;
Editar y ejecutar código