Preventing changes to Products
The Fresh Fruit Delivery company doesn't want regular users to be able to change product information or the actual stock.
Cet exercice fait partie du cours
Building and Optimizing Triggers in SQL Server
Instructions
- Create a new trigger,
PreventProductChanges
, that prevents any updates to theProducts
table.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
-- Prevent any product changes
CREATE TRIGGER ___
ON ___
___ ___ UPDATE
AS
RAISERROR ('Updates of products are not permitted. Contact the database administrator if a change is needed.', 16, 1);