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

I'm writing a C++ console application that needs to respond to a change in a specific field of a database table. Though I can keep sending a query to check the field periodically, I'd like to avoid this because multiple instances of this application might be running. I have heard of the Query Notification feature of SQL Server 2005 but it seems that the feature would not avaialbe for my setting (SQL Server 2000). In this case what would be a best way to achieve this functionality?

share|improve this question

4 Answers

You can only poll for changes periodically. There is absolutely no way to get notifications from SQL Server 2000. All claims to the contrary are pipe dreams.

Triggers that do any sort of external notification, via a OLE automation (sp_oa methods), via extended procedures, via xp_cmdshell or anything like are not going to work. First there is the issue of performance: the last thing you want your database to do is to block in triggers waiting for external processes to respond. Second, there is this usually ignored little detail of correctness in a transactional environment: any notification sent during a trigger would have to be 'unsent' if the enclosing transaction is rolled back. The only way to achieve this is enroling in a distributed transaction with the notification mechanism (MSMQ for instance) and this means a drop in troughput from hundreds/thousands per second to single digits.

Don't go there. Upgrade to SQL 2005 and use QN, which is the only active change notification mechanism. Or settle for periodic polling of last changes.

share|improve this answer
Each instance of the word pull should be poll. – wallyk Dec 30 '09 at 21:11
You can edit and fix typos and grammar wally, I don't mind – Remus Rusanu Dec 30 '09 at 21:13
"any notification sent during a trigger would have to be 'unsent' if the enclosing transaction is rolled back". Not necessarily true with the right semantics: a message saying "something may have changed, you should poll the DB now" doesn't have to be undone on failure. But if it's sent before the transaction is committed, I guess you'd have a different insoluble problem, that it might be acted on too soon. – Steve Jessop Dec 30 '09 at 22:25
@Steve: true, one can treat notifications as tentative. But that comes with its own bagae of problems. If this problems would had been easy to solve, distributed transactions wouldn't had to be invented. – Remus Rusanu Dec 30 '09 at 23:31

Here's how I would do it.

You have your console application which is repsonsible for checking when the value of a specific column of a table changes anywhere in that column (update, deletes, inserts, whatever).

Step 1 - don't point that console application at the DB, create a MSMQ and make it look there

Step 2 - create a second console application whose sole job it is is to write a value to the above MSMQ

Step 3 - Create a trigger on the table in question to execute the console application from step 2.

share|improve this answer

I think the Notification Services itself can be run on SQL Server 2000.

Take a look at these articles:

Hope this helps.

share|improve this answer

I think you should use triggers for that.

When table field gets changed trigger is fired and notify other application using any IPC mechanism or writing necessary information in registry or temporary files .

share|improve this answer
Could you be a bit more specific. How can I use triggers to notify an application? Thanks. – atquail_08 Dec 30 '09 at 20:47

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.