Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sending messages to VB from SQL 2000 using triggers

Status
Not open for further replies.

ppynrde

Programmer
Sep 11, 2001
20
GB
Is it possible to have SQL Server send messages to Visual Basic when a table update trigger fires. I need to inform a user on a client machine when some base data changes so that they can refresh the data on their machine.

Any help would be most appreciated.
 
I don't know of any easy way for sql server to send a message to a vb app.

I would have your trigger(s) update a single "last updated datetime" value in a table somewhere, and then have your app check this value periodically to see if its last refresh is stale.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top