Viewing 15 posts - 4,171 through 4,185 (of 6,679 total)
The formula is fairly simple:
Set datefirst 7;
Declare @day int
,@today datetime
,@nextMonday datetime;
Set @day = 2...
February 9, 2010 at 4:04 pm
Alvin Ramard (2/9/2010)
Anyone know if PowerShell can do the same things as RoboCopy?
No - and I really don't understand why they did not build that functionality into it. I...
February 9, 2010 at 1:49 pm
Tara - what is the account that is running SQL Server Agent?
February 9, 2010 at 1:03 pm
When in doubt, I review the following excellent articles:
http://www.sqlskills.com/BLOGS/KIMBERLY/post/8-Steps-to-better-Transaction-Log-throughput.aspx
http://www.sqlskills.com/BLOGS/KIMBERLY/post/Transaction-Log-VLFs-too-many-or-too-few.aspx
February 8, 2010 at 2:06 pm
You really need to identify why the transaction log backup job is failing. If you do not identify and correct that issue it is going to occur again.
Here is...
February 7, 2010 at 5:49 pm
Review the transaction log backup job and identify why that job is failing. The error you are getting is fairly specific and is telling you that the transaction log...
February 6, 2010 at 7:05 pm
Indianrock (2/6/2010)
February 6, 2010 at 6:58 pm
This document http://www.microsoft.com/sqlserver/2005/en/us/Special-Considerations.aspx#passive describes the different configuration possibilities and how they need to be licensed.
It also shows the various supported configurations for Reporting Services which your suggested configuration is included.
So,...
February 6, 2010 at 10:56 am
I have not used this agent before, but having used various third-party tools for backups my guess would be that the format is proprietary and can only be restored using...
February 6, 2010 at 10:44 am
Dixie - those parameters are not optional, the 137 parameters are required parameters - and from what I recall the next 255 are optional parameters that can be used to...
February 5, 2010 at 7:51 pm
You have the function STATS_DATE - you can use that to identify when the stats were last updated. You can review the stored procedure sp_updatestats to see how this...
February 5, 2010 at 5:30 pm
Also think about why you need to have an incrementing value for the ID in that table. Does it absolutely require an incrementing value with no gaps? Or...
February 5, 2010 at 4:56 pm
Unless (!) ...now this is a really unlikely scenario, but what the heck: You are doing a Full backup, and even though you know it will take a very very...
February 5, 2010 at 4:50 pm
For most cases, auto update stats or sp_updatestats is good enough. For those instances where you need more, you should schedule that separately and with the appropriate sampling rate.
I...
February 5, 2010 at 2:16 pm
Great - glad I could help.
February 4, 2010 at 4:00 pm
Viewing 15 posts - 4,171 through 4,185 (of 6,679 total)