Staring on Friday, the purblisher started receiving this error to one
subscriber (the other subscriber is fine).
I have changed the agent profile to Slow Link Agent, but that has made
no difference. THe replication monitor stays on "connecting to
subscriber subscriber1" and doesn't change.
ANy ideas about what i can do to correct this??
Darin
*** Sent via Developersdex http://www.developersdex.com ***
Staring on Friday, the purblisher started receiving this error to one
subscriber (the other subscriber is fine).
"replication agent has not logged a progress message in 10 minutes"
If not you have run into the second possibility which is your agent has
hung. You might have to restart sql server on the subcriber or reboot it.
You can set the threshold when sql server reports this status message by
issuing the below on your distributor.
sp_changedistributor_property, 'heartbeat_interval',600
"Darin" <darin_nospam@nospamever> wrote in message
news:ursrYse9...@TK2MSFTNGP06.phx.gbl...
THe activity monitor on the subscriber does not show any processes
locked.
I looked at the performance monitor for Repl. Pending Xacts and there is
over 4billion transactions - there is NO WAY that there are that many
that need to be replicated, espeically since the other subscriber only
gets about 10,000 transactions per day.
Now, if someone hit re-initialize subscription instead of hitting
stop/start, would this create numbers that are that far out there? also,
what can i do to see what transactions it says needs to be replicated
and whether these are transactions from the publisher to the subscriber
or from the subscriber to the publisher. That is really what i want to
know - which direction are these 4billion transactions going, because
both the distributor and the subscriber show 4billing pending xacts.
Help me please.
Darin wrote:
replication agent has not logged a progress message in 10 minutes
05-Aug-08
Darin
Previous Posts In This Thread:
On Tuesday, August 05, 2008 10:46 AM
Darin wrote:
replication agent has not logged a progress message in 10 minutes
SQL 2005 on windows 2003
Staring on Friday, the purblisher started receiving this error to one
subscriber (the other subscriber is fine).
"replication agent has not logged a progress message in 10 minutes"
I have changed the agent profile to Slow Link Agent, but that has made
no difference. THe replication monitor stays on "connecting to
subscriber subscriber1" and doesn't change.
ANy ideas about what i can do to correct this??
Darin
*** Sent via Developersdex http://www.developersdex.com ***
On Friday, October 03, 2008 11:48 AM
Paul.Ibiso wrote:
EggHeadCafe - Software Developer Portal of Choice
Asynchronous Fire and Forget Pattern Redux
http://www.eggheadcafe.com/tutorials/aspnet/6ced07fc-a95e-4f4d-b3eb-1f5810590fca/asynchronous-fire-and-for.aspx
I normally bump this setting up to 30 minutes, however this will mean your
agents can hang for up to 30 minutes.
sp_changedistributor_property 'heartbeat_interval',30
Now, you will need to determine what your agent is doing while it is
hanging. So run the following on your publisher/distributor/subscriber
select spid from sys.sysprocesses where program_name like 'publisher_name%'
where Publisher_name is the name of your publisher server.
Then using the spids you find issue the following call
dbcc inputbuffer(spid_returned_from_above)
"Brian Wakhutu" wrote in message news:2009102884...@yahoo.com...