Keep data changes in check with this new trigger type
Since its first release, SQL Server has had a mechanism to provide an automated response whenever a user or an application changes data. This mechanism is a trigger, which is a special kind of stored procedure. Before SQL Server 2000, the only type of trigger available was an AFTER triggerthat is, a set of statements that automatically executes after a data modification takes place. SQL Server 2000 has extended...