ComenzarEmpieza gratis

Modifying a trigger's definition

A member of the Sales team has noticed that one of the triggers attached to the Discounts table is showing a message with the word "allowed" missing.

Este ejercicio forma parte del curso

Building and Optimizing Triggers in SQL Server

Ver curso

Instrucciones del ejercicio

  • Modify the trigger definition and fix the typo without dropping and recreating the trigger.
  • Add the missing word to the PRINT statement.

Ejercicio interactivo práctico

Prueba este ejercicio completando el código de muestra.

-- Fix the typo in the trigger message
___ TRIGGER PreventDiscountsDelete
ON ___
INSTEAD OF DELETE
AS
	PRINT 'You are not ___ to remove data from the Discounts table.';
Editar y ejecutar código