Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
2  
What kind of notification do you need? Immediate? Do you need an app to be notified, or do you need an email sent to you? Do you really need to be notified, or do you just want to track these changes? – Richard DesLonde Mar 13 '11 at 9:09
2  
You might want to stick around next time after you ask a question so you can make clarifications/interact with the answerers. SO users are wicked fast with answering, and you are wasting a good opportunity to get good answers if you don't "hover" over your question waiting for replies. – Richard DesLonde Mar 13 '11 at 9:23
i just need to know if any other app update or insert any data , i dont need the data itself just a flag that this table has new changes. sorry for being late i didnt know that answers are fast like that – ToDayIsNow Mar 13 '11 at 10:17
No problem. SO culture takes some getting used to. It's unlike any other Q & A or forum that I have ever seen. – Richard DesLonde Mar 13 '11 at 10:34

5 Answers

up vote 17 down vote accepted

You can use the SqlDependency Class. Its intended use is mostly for ASP.NET pages (low number of client notifications).

ALTER DATABASE UrDb SET ENABLE_BROKER

Implement the OnChange event to get notified:

void OnChange(object sender, SqlNotificationEventArgs e)

And in code:

SqlCommand cmd = ...
cmd.Notification = null;

SqlDependency dependency = new SqlDependency(cmd);

dependency.OnChange += OnChange;

It uses the Service Broker (a message-based communication platform) to receive messages from the database engine.

share|improve this answer
Cool. I didn't know about this. – Richard DesLonde Mar 13 '11 at 10:34

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

share|improve this answer

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

share|improve this answer

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)

share|improve this answer
Just out of curiosity, could you clarify on what's "bad architecture" here? – James Jan 16 '12 at 19:50

You need to start programming and not rely on a database to handle your non database needs.

I need to get notified in one of this apps when any change (update, insert) happened in a certain table

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.

share|improve this answer
1  
You're making the assumption that the person asking the question has control over the application/mechanism which inserts the data. – TFerrell Sep 12 '11 at 18:53
Irrelevant. Even if ou dont have to do it, cars are not planes. Stupid requests should be returned to management, not tried to be implemented. – TomTom Sep 13 '11 at 6:07
2  
Absolute nonsense, as @TFerrel says, this functionality is often essential. – Mike Campbell May 10 at 12:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.