Viewing 15 posts - 3,781 through 3,795 (of 5,841 total)
1) have you looked into asynchronous stats updates?
2) 60GB is WAY to high for max memory on 64GB box. Have you monitored for paging? I would try maybe...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
November 30, 2010 at 10:39 pm
1) did you run update statistics on EVERYTHING with FULLSCAN?
2) have you done a waitstats analysis while the queries are running for hours?
3) have you done a fileIO stall analysis...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
November 30, 2010 at 10:34 pm
I looked around and couldn't find anything either Jeff. Perhaps if it does exist it is buried in the list of Edition features?
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
November 30, 2010 at 8:13 am
george sibbald (11/27/2010)
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
November 29, 2010 at 9:21 am
Review this link, and the two associated posts:
http://blogs.msdn.com/bartd/archive/2006/09/09/Deadlock-Troubleshooting_2C00_-Part-1.aspx
Also try here if you are getting the intraquery parallelism deadlock:
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
November 25, 2010 at 8:23 am
1) the easy answer is to drop a FusionIO card into the server and use that for tempdb.
2) I wonder if a plan guide can be created that will somehow...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
November 25, 2010 at 8:17 am
Refactoring this stuff is WAY beyond a forum - it simply cannot be effectively done. I agree with the other poster who said it is time to call in...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
November 24, 2010 at 8:00 am
The obvious thing is to review all scheduled activity that occurs around the times of concern. I recommend sqljobvis to view job activity as a gantt chart - amazing...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
November 24, 2010 at 7:23 am
My vote is for 5.5GB max memory for this machine, assuming the only thing running on it is the SQL Server relational engine. Monitor for paging to ensure this...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
November 24, 2010 at 7:14 am
1) ALWAYS use aliases for your tables AND columns (quite a few columns are not aliased)! Try this:
select a.8,b.aasdfddd
from aaaa a, bbbbb b
where a.srno = b.srno and isnull(status,'Y')='Y'...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
November 16, 2010 at 7:27 am
I would like to put in a plug for SQLJobVis - a wonderful FREE utility that helps with agent job analysis: http://www.sqlsoft.co.uk/sqljobvis.php
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
November 16, 2010 at 7:21 am
1) if you check the code for sp_updatestats I think you will find that it isn't so selective as you imagine. It updates anything with 1 or more rows...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
November 5, 2010 at 7:28 pm
The latest version of Ola's index maintenance sproc now has the ability to specify indexes, so you can set up rolling jobs to cycle through them and not crush your...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
November 5, 2010 at 2:06 pm
If you are planning on doing some tuning and you are just learning about indexes, PLEASE do yourself a HUGE favor and hire a professional out for a few days...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
November 5, 2010 at 2:05 pm
Best answer is hire a performance tuning guru to give your system, application, databases, etc a review. It is astounding what a qualified individual can identify in just a...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
November 5, 2010 at 2:03 pm
Viewing 15 posts - 3,781 through 3,795 (of 5,841 total)