DataBase Trigger

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All

I want to create a comon insert trigger which should be applicable to all the tables in a databas

i.e
the trigger should be fired every time when we try to insert a record in any one of the tables in that databas

i don't to achieve this using Stored Procedures

Thanks and Best Regard
Jothi Mages
 
As far as I know triggers are table specific, so you can't have a common
trigger shared among tables. Also by definition a trigger is a special type
of stored procedure. The new version of SQL Server may address some of your
requests, but I don't know for sure.
 
Back
Top