Viewing 15 posts - 196 through 210 (of 1,580 total)
?
It's just the output of reads...in a more readable format, there's no actual "data"...
Hardly something to be worried about.
April 13, 2014 at 10:44 pm
In my experience, this isn't actually an error. It's more of a "Hey! I'm usually pretty busy, but I've got nothing to do right now...you should take a look!"...
April 11, 2014 at 4:25 pm
What exactly are you trying to find out? The error is pretty specific: the authentication process is timing out.
Try increasing the connection timeout property on the actual linked server...
April 11, 2014 at 4:16 pm
If you can, please post the exact query, as well as the index definitions.
Most importantly, please attached the execution plan...
To start, add a non clustered index on the filtered column...
April 11, 2014 at 4:10 pm
smtzac (4/11/2014)
April 11, 2014 at 2:19 pm
use [PublishedDB]
GO
EXEC sp_dropsubscription @publication= N'PublicationName', @article =N'Table1', @subscriber=N'all'
EXEC sp_droparticle @publication = N'PublicationName', @article = N'Table1', @force_invalidate_snapshot = 1
use [PublishedDB]
GO
April 11, 2014 at 10:11 am
I don't believe this is possible other than watching the snapshot run via the GUI, you can however determine the total size of the snapshot. Then, based on your...
April 11, 2014 at 9:12 am
I believe you just need to Wrap your @sql in brackets:Execute (@sql);
Otherwise, it thinks you are execution a stored-procedure
April 11, 2014 at 9:09 am
On the publisher, you can run:use [PublishedDB]
GO
EXEC sp_dropsubscription @publication= N'PublicationName', @article =N'TableName', @subscriber=N'all'
EXEC sp_droparticle @publication = N'PublicationName', @article = N'TableName', @force_invalidate_snapshot = 1
April 11, 2014 at 9:06 am
This operation is single threaded in sql 2008 and earlier and can only take advantage of 1 CPU (this is why it takes so long) I believe it is multi-threaded...
April 11, 2014 at 8:13 am
Tables, views, procedures, and functions are stored in the DistributionDB.dbo.MSarticles table:SELECT * FROM distribution.dbo.MSarticles WHERE publisher_db = [YourDB]
Hope this helps!
Also, on the publisher you can run the query below to...
April 10, 2014 at 11:41 am
Okay...
To collect database growth over time, you could use something like this: SELECT database_name ,
BackupDate = CONVERT(VARCHAR(10), backup_start_date, 111) ,
SizeInGigs =...
April 10, 2014 at 11:08 am
There are countless scripts out there for this, what specifically are you wanting to track?
Try this link 🙂
April 10, 2014 at 10:52 am
Did the suggestion help or did you go another route?
April 9, 2014 at 7:26 pm
Viewing 15 posts - 196 through 210 (of 1,580 total)