Viewing 15 posts - 316 through 330 (of 1,271 total)
Are you still having any issues, or did you resolve everything on your own? Sounds like you have it well in hand.
If not, perhaps you would have better luck doing...
June 2, 2012 at 7:11 pm
Do the maintenance plans show up in msdb.dbo.sysssispackages? do the subplans show up in msdb.dbo.sysmaintplan_subplans?
What is the output of this query?:
Use msdb;
Select SP.name, SP.folderid, SPF.parentfolderid, SPF.foldername
From dbo.sysssispackages SP
Left Join dbo.sysssispackagefolders...
June 2, 2012 at 7:00 pm
Yes, filestream has to be enabled at the server level first using SQL Server Configuration Manager. Make sure you enable and configure filestream identically on both servers.
June 2, 2012 at 6:31 pm
Agree 100% with Daxesh. There is increased CPU due to the compression, but the decreased IO offsets most of the CPU hit. The big exception is if the database is...
June 2, 2012 at 6:28 pm
Codezilla-292868 (5/31/2012)
June 2, 2012 at 6:23 pm
Actually, it depends on the storage type during install. If using shared drives, it's 25 instances and if using SMB fileshares, it's 50 instances.
Using SMB fileshares is an edgecase though,...
May 24, 2012 at 8:40 am
I laughed very hard at the replies here, but if we're posting serious answers now, I think the OP should start with this post by Paul Randal: http://www.sqlskills.com/BLOGS/PAUL/post/The-art-of-asking-email-questions-or-not.aspx
This post is...
May 23, 2012 at 11:01 pm
I really like the way you demonstrated the difference in times in the restore process. I'm sure smeone will point out that you can skip zeroing out the log file...
May 20, 2012 at 11:11 pm
Please post your merge statement.
May 19, 2012 at 11:04 am
GilaMonster (4/24/2012)
Ask him if he wants to bet his job on there being no additional problems (because without backups, that's what you would be doing)
+1000 Nobody has ever gotten fired...
May 19, 2012 at 11:00 am
Correct. Automatic failover is not required to use the Failover Partner attribute in the connection string.
For replication, I recommend using load balancing in front of the replicated servers. This gives...
May 19, 2012 at 10:53 am
Compression of log backups is very minimal. The CPU cost of compression is mostly balanced out by the reduced cost of IO (which is also CPU).
May 19, 2012 at 10:50 am
Security isn't set up correctly. How is the distribution agent connecting to the subscriber? Check the accounts and permissions.
May 19, 2012 at 10:45 am
Thanks for the update! This is a very interesting case.
May 9, 2012 at 8:33 pm
Sounds like it may be a problem that is causing the snapshot to fail. Can you try running CheckDB with the TABLOCK option?
DBCC CHECKDB ('WSS_Content_8e01f4f2-eabb-404f-939e-90d3b9a633dc') WITH TABLOCK, ALL_ERRORMSGS, NO_INFOMSGS;
May 7, 2012 at 10:12 pm
Viewing 15 posts - 316 through 330 (of 1,271 total)