I have more than one application accessing the same DB and I need to get notified if one of these apps change anything (update, insert) in a certain table.
Database and apps are not in the same server.
|
I have more than one application accessing the same DB and I need to get notified if one of these apps change anything (update, insert) in a certain table. Database and apps are not in the same server. |
|||||||||||||
|
|
You can use the SqlDependency Class. Its intended use is mostly for ASP.NET pages (low number of client notifications).
Implement the
And in code:
It uses the Service Broker (a message-based communication platform) to receive messages from the database engine. |
|||
|
|
|
Generally, you'd use Service Broker That is trigger -> queue -> application(s) Edit, after seeing other answers: FYI: "Query Notifications" is built on Service broker Edit2: More links |
||||
|
|
|
Since SQL Server 2005 you have the option of using Query Notifications, which can be leveraged by ADO.NET see http://msdn.microsoft.com/en-us/library/t9x04ed2.aspx |
|||
|
|
|
looks like bad architecture all the way. also you have not specified the type of app you need to notify to (web app / console app / winforms / service etc etc) nevertheless, to answer your question, there are multiple ways of solving this. you could use: 1) timestamps if you were just interested in ensuring the next set of updates from the second app dont conflict with the updates from the first app 2) sql dependency object - see http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqldependency.aspx for more info 3) a custom push notification service which multiple clients (web / winform / service) can subscribe to and get notified on changes in short, you need to use the simplest and easiest and cheapest (in terms of efforts) solution based on how complex your notification requirements are and for what purpose you need to use them. dont try to build an overly complex notification system if a simple data concurrency is your only requirement (in that case go for a simple timestamp based solution) |
|||
|
|
You need to start programming and not rely on a database to handle your non database needs.
And this is EXACTLY what... sql databases are not designed to do. Point. Run all updates through a server, have the server distribute change notifications to all active clients. |
|||||||||||
|