Viewing 15 posts - 166 through 180 (of 233 total)
Check to see if the account which is trying to access the database has enough permission to access DB/ create mirror or Database autogrowth is on.
May 1, 2013 at 11:25 am
Mirror will become the Primary.
April 29, 2013 at 6:02 am
what value SET @subscriber = $(Client Name) is returning ? Do you know subscriber name, so you can pass directly?
April 28, 2013 at 2:05 pm
When you want to setup replication from back up, you do not have to run snapshot agent, because you are already doing the work of snap shot agent by restoring...
April 28, 2013 at 11:31 am
What parameters you are passing in sp_dropmergesubscription?
take a look in the code of sp_dropmergesubscription and see if you running on any valid sequence. May be SP is running successfully but...
April 28, 2013 at 8:25 am
Check this out.
http://www.sqlskills.com/blogs/kimberly/8-steps-to-better-transaction-log-throughput
This article by Kimberly Tripp describes about the VFL management.
April 28, 2013 at 7:54 am
Duplicate Post :-
http://www.sqlservercentral.com/Forums/Topic1447198-1549-1.aspx
April 27, 2013 at 5:53 am
yes it is a very good idea to start with these books.
But if you want to learn about deprecated features:-
http://msdn.microsoft.com/en-us/library/ms143729.aspx
http://technet.microsoft.com/en-us/library/cc707789(v=sql.105).aspx
April 27, 2013 at 5:19 am
April 26, 2013 at 4:19 pm
You can view synchronization status in subscriber and also validate subscription to see what is going on. But as DHeath said replication monitor is the best to see things is...
April 26, 2013 at 4:04 pm
It looks like you have duplicate rows in MSArticles and MSSubscriptions. I would suggest to run the following commands:-
delete distribution..MSarticles where publisher_db = 'YourPublisherDB'
delete distribution..MSsubscriptions where...
April 26, 2013 at 3:54 pm
Glad it worked for you.
April 25, 2013 at 2:22 pm
Do you see anything under Local Publication then Publication and click on + of publication..If yes try the below mentioned command..
USE master
EXEC sp_removedbreplication @dbname='DBName'
GO
sp_dropsubscription @subscriber='SubscriptionName'-- If you...
April 25, 2013 at 1:56 pm
Check under replication "Local Subscription"? Is there any?
April 25, 2013 at 1:38 pm
Viewing 15 posts - 166 through 180 (of 233 total)