SQL Server with Rick Martinez:

DML Trigger

1

January 25, 2010  10:01 PM

How To Create a DML Trigger



Posted by: Rick Martinez
DML Trigger, SQL Server, SQL SERVER 2005, SQL Trigger, T-SQL, Trigger

A DML trigger contains t-sql code that is used to respond to an INSERT, UPDATE, or DELETE operation against a table or view. When a data modification event occurs, the trigger performs a set of actions defined within the trigger. There are two types of DML triggers: AFTER and INSTEAD OF. AFTER...

1