Re: SQL Server 2008 / VB2008
As I understand, you need to push the data to these monitors when the updater has updated records.
Perhaps this article is for you.
Re: SQL Server 2008 / VB2008
Thanks for the link. I've had a look and it seems that it's describing how to 'synchronise' databases, it would still require the monitor to 'poll' something to look for a change, rather than being automatically updated via an asynchronous operation.
I'm reasonably comfortable with TCPClient and TCPServer so I think I'll go along that route and just notify the monitor(s) that something has changed when the application updates the fields in question.
I was just hoping that there was 'some magic' solution built in to something somewhere. :) At the moment I've got some more fundamental problems :)
Re: SQL Server 2008 / VB2008
Quote:
Originally Posted by
Doogle
Thanks for the link. I've had a look and it seems that it's describing how to 'synchronise' databases, it would still require the monitor to 'poll' something to look for a change, rather than being automatically updated via an asynchronous operation.
I'm reasonably comfortable with TCPClient and TCPServer so I think I'll go along that route and just notify the monitor(s) that something has changed when the application updates the fields in question.
I was just hoping that there was 'some magic' solution built in to something somewhere. :) At the moment I've got some more fundamental problems :)
I would suggest an easy way out would be to run an application service on one computer. Then have each monitor query the application service at a fixed interval. The application service would read the database at a fixed interval. This will give you the same result, but it would mean, you would have to pull the data each time instead of pushing it from Sql Server.