Click here to Skip to main content
15,912,282 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,

I have a doubt.Can we use a stored procedure inside a trigger?Please help.
Posted

Yes we can call a stored procedure inside a trigger...

SQL
CREATE TRIGGER DemoTrigger ON YourTable AFTER delete,Update
AS
BEGIN

  SET NOCOUNT ON;

  Declare @id int

  select @id=deleted.Id from deleted

  execute dbo.YourStoredProcName @id

END


Thank you
 
Share this answer
 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900