|
|
|
Hall of Fame
       
Group: General Forum Members
Last Login: Monday, May 13, 2013 8:24 AM
Points: 3,280,
Visits: 6,619
|
|
Next time it runs, it should clean up everything. But it will take time to run the clean up Job. I think you should try to run the clean up job manually. Just copy the command from the Job step and run it through SSMS. But that will not make the DB size small. But the latency will drop down to a manageable level.
-Roy
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Monday, January 11, 2010 4:45 PM
Points: 1,
Visits: 0
|
|
Try this link, I believe it describes your problem.
http://www.mssqltips.com/tip.asp?tip=1823
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Thursday, May 16, 2013 5:23 AM
Points: 1,004,
Visits: 260
|
|
I have the same Issue. I did all the above steps,
but when I run the Job 'Agent history clean up : Distribution' .. the log file is growing rapidly.
What can be done to resolve the issue.
Thanks in advanced
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Tuesday, April 30, 2013 5:59 AM
Points: 1,075,
Visits: 5,114
|
|
What is the recovery model of your Distribution database? It is supposed to be "Simple". If it is something else, change it to Simple.
|
|
|
|
|
SSC Veteran
      
Group: General Forum Members
Last Login: Tuesday, April 23, 2013 4:48 AM
Points: 282,
Visits: 116
|
|
Simple recovery model.
when the job 'Agent history clean up: distribution’ is executing the log file is growing rapidly. so i disabled the job for now. will it effect the replication ?? up to what extents.
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Tuesday, April 30, 2013 5:59 AM
Points: 1,075,
Visits: 5,114
|
|
Please run the following script to check why log entries are not removed:
select name, log_reuse_wait, log_reuse_wait_desc from sys.databases where name = 'Distribution'
Also run:
dbcc opentran()
|
|
|
|