Hi ,
We are setting up a new Sql Server for our testing environment and migrated the data from Old Server to the New one by Attaching the .Mdf Files.
The Old server was already having replication services setup and was working fine, but when we are trying to setup the Replication Services in the New Server ,we are getting the following error.
The replication agent has not logged a progress message in 10 minutes. This might indicate an unresponsive agent or high system activity. Verify that records are being replicated to the destination and that connections to the Subscriber, Publisher, and
Distributor are still active.


We have tried with
USE master
exec sp_changedistributor_property
@property = N'heartbeat_interval',
@value = 5;
GO but issue not resolved.
--RDBurmon