Collections:
What Are Triggers in SQL Server
What Are Triggers in SQL Server?
✍: FYIcenter.com
A trigger is a special kind of stored procedure that automatically executes when an event occurs in the database server. A trigger is really an event handler. SQL Server allows users to create triggers (event handlers) for 3 types of events:
There are 3 different types of triggers (event handlers) based on the types of events they are triggered by:
⇒ Basic Features of a Trigger in SQL Server
⇐ Creating and Managing Triggers in SQL Server
2016-10-25, 2510🔥, 0💬
Popular Posts:
How To Get the Definition of a View Out of the SQL Server in SQL Server? If you want get the definit...
What Are the Basic Features of a Trigger in SQL Server? Since a SQL Server trigger is a really an ev...
Is SQL Server Transact-SQL case sensitive? No. Transact-SQL is not case sensitive. Like the standard...
How to format a number of bytes in a human-readable unit using the FORMAT_BYTES() function? FORMAT_B...
How to obtain the number of rows found by the last SELECT statement using the FOUND_ROWS() function?...