I’m using SQL Server (2005).
Today I have some tables that everytime the data inside them changes I get DB trigger
(implemented via the sql server trigger mechanism) and handles it.
the problem is that the trigger mechanism has bad performance and handling with it is not exaclly afun thing to do. now to my question. is anybody knows any diffrent way to get notification from sql server whenever a data on a specific table changes.(deleted,added,updated) ?
I’m using SQL Server (2005). Today I have some tables that everytime the data
Share
SQL Server Query Notifications were introduced in SQL Server 2005 and do exactly this. I agree it would be good to see what your trigger is doing though to gauge suitability for your specific case.