Triggers Introduction
Posted by Praveen Kumar on April 5, 2008
Introduction
A trigger is a database object that is bound to a table. In many aspects, it is similar to a stored procedure. As a matter of fact, triggers are often referred to as a “special kind of stored procedure”.
An Example
First Create table
create table companies(companycode varchar(10) NULL,compname varchar(10))
Insert one record
insert companies values(‘A1′,’Mahiti’)
Create Trigger
create TRIGGER trg_Companies_i_companycode_specialUNQ
on companies for insert,update
as
if exists(select I.companycode from inserted as I JOIN Companies as C
on I.companycode=C.companycode
where I.companycode<>”
group by I.companycode
having count(*)>1)
begin
raiserror(‘Duplicate Found,Transaction rollback,’,10,1)
rollback tran
end
Issues
If you will again insert the same record it will give you message
on companies for insert,update
as
if exists(select I.companycode from inserted as I JOIN Companies as C
on I.companycode=C.companycode
where I.companycode<>”
group by I.companycode
having count(*)>1)
begin
raiserror(‘Duplicate Found,Transaction rollback,’,10,1)
rollback tran
end
‘Duplicate Found,Transaction rollback,’
When to Use Triggers
There are many reasons to use triggers. If you have a table which keeps a log of messages, you may want to have a copy of them mailed to you if they are urgent. If there were no triggers, you would have some solutions, though they are not as elegant. You could modify the application(s) logging the messages. This means that you might be redundantly coding the same thing in every application that logs messages.
Tables can have multiple triggers. The CREATE TRIGGER statement can be defined with the FOR UPDATE, FOR INSERT, or FOR DELETE clauses to target a trigger to a specific class of data modification actions. When FOR UPDATE is specified, the IF UPDATE (column_name) clause can be used to target a trigger to updates affecting a particular column.
SQL Server 2000 greatly enhances trigger functionality, extending the capabilities of the triggers you already know and love, and adding a whole new type of trigger, the “Instead Of” trigger.
SQL Server 2000 has many types of triggers:
-
After Trigger
-
Multiple After Triggers
-
Instead Of Triggers
-
Mixing Triggers Type
After Triggers
Triggers that run after an update, insert, or delete can be used in several ways:
- Triggers can update, insert, or delete data in the same or other tables. This is useful to maintain relationships between data or to keep audit trail information.
- Triggers can check data against values of data in the rest of the table or in other tables. This is useful when you cannot use RI constraints or check constraints because of references to data from other rows from this or other tables.
- Triggers can use user-defined functions to activate non-database operations. This is useful, for example, for issuing alerts or updating information outside the database.
Note: An AFTER trigger can be created only on tables, not on views.
AFTER trigger can be created only on tables, not on views.How to Create After Triggers
-
Working with
INSERTTriggersINSERT INTO Customers
VALUES (‘Mayank’,’Gupta’,’Hauz Khas’,’Delhi’,
’Delhi’,’110016’,’01126853138’)
INSERT INTO Customers
VALUES(‘Himanshu’,’Khatri’,’ShahjahanMahal ’,
’Jaipur’,’Rajesthan’,’326541’,’9412658745’)
INSERT INTO Customers
VALUES (‘Sarfaraz’,’Khan’,’Green Market’,
’Hydrabad’,’AP’,’698542’,’9865478521’)INSERT INTO Products
VALUES (‘ASP.Net Microsoft Press’,550)
INSERT INTO Products
VALUES (‘ASP.Net Wrox Publication’,435)
INSERT INTO Products
VALUES (‘ASP.Net Unleased’,320)
INSERT INTO Products
VALUES (‘ASP.Net aPress’,450)CREATE TRIGGER invUpdate ON [Orders]
FOR INSERT
AS
UPDATE p SET p.instock=[p.instock – i.qty]
FROM products p JOIN inserted I ON p.prodid = i.prodidYou created
INSERTtrigger that referenced the logical inserted table. Whenever you insert a new record in the Orders table now, the corresponding record in the Products table will be updated to subtract the quantity of the order from the quantity on hand in the instack column of the Products table. -
Working with
DELETETriggersDELETEtriggers are used for restricting the data that your users can remove from a database. For example:CREATE TRIGGER DelhiDel ON [Customers]
FOR DELETE
AS
IF (SELECT state FROM deleted) = ‘Delhi’
BEGIN
PRINT ‘Can not remove customers from Delhi’
PRINT ‘Transaction has been canceled’
ROOLBACK
ENDDELETEtrigger uses the logical deleted table to make certain that you were not trying to delete a customer from the great state “Delhi” – if you did try to delete such a customer, you would be met with Mayank in the from of an error message (which was generated by thePRINTstatement that you entered in the trigger code). -
Working with
UPDATETriggersUPDATEtriggers are used to restrictUPDATEstatements issued by your users, or back your previous data.CREATE TRIGGER CheckStock ON [Products]
FOR UPDATE
AS
IF (SELECT InStock FROM inserted) < 0
BEGIN
PRINT ‘Cannot oversell Products’
PRINT ‘Transaction has been cancelled’
ROLLBACK
ENDYou created an
UPDATEtrigger that references the inserted table to verify that you are not trying to insert a value that is less than zero. You need to check only the inserted table because SQL Server performs any necessary mathematical functions before inserting your data.
Multiple After Triggers
More than one trigger can now be defined on a table for each Insert/Update/Delete. Although in general, you might not want to do this (it’s easy to get confused if you over-use triggers), there are situations where this is ideal. One example that springs to mind is that you can split your triggers up into two categories:
-
Application based triggers (cascading deletes or validation, for example).
-
Auditing triggers (for recording details of changes to critical data).
This would allow you to alter triggers of one type without fear of accidentally breaking the other.
If you are using multiple triggers, it is of course essential to know which order they fire in. A new stored procedure called sp_settriggerorder allows you to set a trigger to be either the “first” or “last” to fire.
If you want more than two triggers to fire in a specific order, there is no way to specifically define this. A deeply unscientific test I did indicated that multiple triggers for the same table and operation will run in the order they were created unless you specifically tell them otherwise. I would not recommend relying on this though.
Instead Of Triggers
Instead Of Triggers fire instead of the operation that fires the trigger, so if you define an Instead Of trigger on a table for the Delete operation, they try to delete rows, they will not actually get deleted (unless you issue another delete instruction from within the trigger) as in this simple example:
CREATE TABLE Mayank (Name varchar(32))
GO
CREATE TRIGGER tr_mayank ON Mayank
INSTEAD OF DELETE
AS
PRINT ‘Sorry – you cannot delete this data’
GO
INSERT Mayank
SELECT ‘Cannot’ union
SELECT ‘Delete’ union
SELECT ‘Me’
GO
DELETE Mayank
GO
SELECT * FROM Mayank
GO
DROP TABLE Mayank
If you were to print out the contents of the inserted and deleted tables from inside an Instead Of trigger, you would see they behave in exactly the same way as normal. In this case, the deleted table holds the rows you were trying to delete, even though they will not get deleted.
Instead of Triggers can be used in some very powerful ways!
-
You can define an Instead Of trigger on a view (something that will not work with After triggers) and this is the basis of the Distributed Partitioned Views that are used so split data across a cluster of SQL Servers.
-
You can use Instead Of triggers to simplify the process of updating multiple tables for application developers.
-
Mixing Trigger Types.

tharaka said
give some picture diagram for examples.thank u
praveensunsetpoint said
Thanks for leaving your comment..yeah a picture describes 1000 words but i want to make my site so light and very descriptive so any one could go in to each and every step..if i keep image then some times it may take long time to open it..but next time i will give some pictorial example too..