Collections:
"CREATE TRIGGER" - Creating a DDL Trigger in SQL Server
How To Create a DDL Trigger using "CREATE TRIGGER" Statements in SQL Server?
✍: FYIcenter.com
A DDL trigger is defined to handle a DDL statement event, like create, alter and drop tables, views, indexes, etc. DDL triggers can be used to generate warning messages on database object changes. The format of creating a DDL trigger should be:
CREATE TRIGGER trigger_name ON DATABASE AFTER ddl_event_types AS statements GO -- ddl_event_types are keywords like: -- CREATE_TABLE, ALTER_TABLE, DROP_TABLE, ...
Below is a simple example of creating a DDL trigger to generate messages on ALTER_TABLE events:
USE FyiCenterData; GO CREATE TRIGGER ddl_message ON DATABASE AFTER ALTER_TABLE AS PRINT 'Someone is changing tables!'; GO ALTER TABLE fyi_users ALTER COLUMN id INT NOT NULL; GO Someone is changing tables!
⇒ Rolling Back the DDL Statement in a Trigger in SQL Server
⇐ "INSTEAD OF" - Overriding DML Statements with Triggers in SQL Server
2016-10-22, 2836🔥, 0💬
Popular Posts:
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...
Where to find answers to frequently asked questions I am new to Oracle database. Here is a list of f...
Where to find tutorials to answer some frequently asked questions on Microsoft SQL Server Transact-S...
How to change the data type of an existing column with "ALTER TABLE" statements in SQL Server? Somet...
How to calculate the storage size of a JSON (JavaScript Object Notation) value using the JSON_STORAG...