Re: Monitor Transaction log
From: William Ryan eMVP (dotnetguru_at_comcast.nospam.net)
Date: 05/28/04
- Next message: William Ryan eMVP: "Re: 150+ columns SQL table???"
- Previous message: Sanjeeva: "Re: Binding"
- In reply to: Chris Wagner: "Re: Monitor Transaction log"
- Messages sorted by: [ date ] [ thread ]
Date: Fri, 28 May 2004 07:08:30 -0400
You can set up a messagequeue and then via trigger for instance, write to
the queue when anything happens. On the client end you can poll to queue
which is much less intensive than querying the db. The new
querynotifications in ADO.NET 2.0 work similarly.
Instead of the queue you could use SQL Servers notification services to send
out a notification that data has changed. This probably won't be practical
for most scenarios unless you are really doing it in a limited scenario.
I know Casey had an example of doing this with Notification services at
www.brains-n-brawn.com .
HTH,
Bill
-- W.G. Ryan MVP Windows - Embedded http://forums.devbuzz.com http://www.knowdotnet.com/dataaccess.html http://www.msmvps.com/williamryan/ "Chris Wagner" <so@hotmail.com> wrote in message news:u$CbChHREHA.3140@tk2msftngp13.phx.gbl... > Not really a publication but a simple monitoring tool to update another app > if anything changes on the SQL or Oracle (depends on each app). All I need > is only a few tables (for update, insert, and delete) and monitor the change > log so I can see what changes and update other apps. Please advice. Thanks > > > "William Ryan eMVP" <dotnetguru@comcast.nospam.net> wrote in message > news:%23k$$fZHREHA.628@TK2MSFTNGP11.phx.gbl... > > If I understand you correctly, ADO.NET is probably not the way to go on > > this > > one. Are you trying to build your own Publication? Yikes. > > > > If so, what's the extent to what you need it to do? > > > > -- > > W.G. Ryan MVP Windows - Embedded > > > > http://forums.devbuzz.com > > http://www.knowdotnet.com/dataaccess.html > > http://www.msmvps.com/williamryan/ > > "Chris Wagner" <so@hotmail.com> wrote in message > > news:e7f4cMHREHA.132@TK2MSFTNGP09.phx.gbl... > >> Is there a way to monitor transaction log in SQL server and Oracle server > >> using .NET? I'd like to write in VB.NET to mimic the SQL server > > replication > >> (transactional publication) to use against SQL and Oracle to monitor some > > of > >> the tables. Please advice. Thanks > >> > >> > > > > > >
- Next message: William Ryan eMVP: "Re: 150+ columns SQL table???"
- Previous message: Sanjeeva: "Re: Binding"
- In reply to: Chris Wagner: "Re: Monitor Transaction log"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|