Viewing 15 posts - 46 through 60 (of 346 total)
hm - interesting problem.
I'm assuming there are no errors in the distribution cleanup job history - only ideas I have are manually running the sp_MSdistribution_cleanup SP with the appropriate parameters...
June 23, 2011 at 11:21 am
What is the retention period configured for your distributor? And do you have immediate_sync set for your publications?
I'm assuming that you're facing the issue outlined here - http://blogs.msdn.com/b/chrissk/archive/2009/07/27/how-replication-setting-immediate-sync-may-cause-transactional-replication-distribution-database-growth.aspx
June 23, 2011 at 1:47 am
I don't know if I've understood your problem completely so let me know if I've gone off on a tangent.
We do the following in our environments:
- Backup and restore the...
June 23, 2011 at 12:58 am
Here's another way:
SELECT name as field FROM sys.tables FOR XML PATH(''),ROOT('fields');
June 21, 2011 at 10:24 am
You could enable logging for the agents (snapshot agent and distribution agent) and see if anything more verbose is logged which could help pinpoint the issue.
Follow the steps listed here...
June 21, 2011 at 6:08 am
And thanks for taking the time to post the solution - this is good stuff to know (for me at least :-))
June 21, 2011 at 12:53 am
One option is to do this:
SET @tableHTML = REPLACE(@tableHTML,'<td>','<td align="right">');
There might be a better way to do via the XML also - I don't know how to do that 😉
June 20, 2011 at 5:40 am
You can use Adam Machanic's sp_whoisactive script to detect blocking (this can be downloaded from here). Use this to check for activity on the server and dig deeper into any...
June 20, 2011 at 5:28 am
There are multiple varities of scripts available for this purpose - here's a sample:
DECLARE @sql nvarchar(max)= '';
DECLARE @tab TABLE(DBName sysname NOT NULL, ObjectName sysname NOT NULL,...
June 17, 2011 at 3:26 am
You cannot drop the PK for a replicated article - you'll have to remove the article from the publication (basically not replicate the article), make the changes and add it...
June 16, 2011 at 8:33 am
I don't think the double \ causes any issues.
Error:
Write on "E:\\PP\\Jobs\\db\\dbname.bak" failed: 112(error not found)
Are you sure you have enough space on the drive? net helpmsg 112 shows the error...
June 16, 2011 at 4:04 am
One of my friend told me that you should only replicate tables and then run scripts of Sps,views,functions at both publisher and Subscriber.
My questions are as
Q No1:-what is...
June 16, 2011 at 1:00 am
Can you post the actual error message you are seeing in the log reader agent. "No replicated transactions available" could also mean that there is no activity on the publisher...
June 15, 2011 at 11:53 pm
About the warning message - from what I remember the warning message comes up by default when you select to replicate views or SPs (i.e. there's no checking done to...
June 15, 2011 at 12:05 pm
As Roy said - the preferred method would be to initialize via a backup. We ran into the same issues (timeouts, taking a very large time etc even though we...
March 2, 2011 at 1:06 am
Viewing 15 posts - 46 through 60 (of 346 total)