Viewing 15 posts - 211 through 225 (of 226 total)
I do and it's fine even with >5k transactions a minute. You don't want to leave it running all the time and you want to capture only the items you...
August 6, 2008 at 7:17 am
Have you right-clicked on SQL Server Agent.
Select Properties.
What do you show on Job System for Non-SysAdmins?
July 31, 2008 at 10:15 am
If you are able to then SSIS would be the route to try.
July 30, 2008 at 1:39 pm
I would use SHRINKFILE specific to the log file.
Whenever I have something like that happen I usually execute the following:
use master
backup log DB_NAME with truncate_only
use DB_NAME
dbcc shrinkfile(LogFileName, 5000)
GO
5000 is just...
July 30, 2008 at 11:43 am
July 30, 2008 at 11:39 am
david (5/3/2008)
July 30, 2008 at 11:32 am
I would think that as you are developing the queries that drive your app you would be able to design your indexes very effectively using some of those features. Don't...
July 30, 2008 at 10:34 am
I would do a little research and see if the selectivity of that column has anything to do with why it wasn't suggested.
Also, you could always put the index back...
July 29, 2008 at 7:11 am
When you run the Index Tuning Wizard are you running it against just one piece of code in query analyzer?
Did you tell it to do a thorough check? Keep the...
July 29, 2008 at 6:51 am
Did you try any of the scripts on here?
Also, you could download a trial of Idera's SQL Diagnostics Manager. It may or may not help you but it's been really...
July 28, 2008 at 1:20 pm
Compare the results of running it under Database Engine Tuning Advisor(2005) and Index Tuning Wizard(2000). It's been a while since I tried that but it seems that I came back...
July 28, 2008 at 1:11 pm
Isn't it true that a covered index will only be used when the column on the left is part of the query?
So a covered non-clustered index with all three items...
July 28, 2008 at 1:06 pm
Anyone get anything like this? It still restores but it fails on this part. I've tried CURSOR READ_ONLY FOR but it didn't help.
Step Error Source: Microsoft OLE DB Provider for...
May 23, 2008 at 12:39 pm
Viewing 15 posts - 211 through 225 (of 226 total)