Slow query response time in SQL Server 2005
0
Q:
Slow query response time in SQL Server 2005

Software/Hardware used:
sql server 2005
ASKED: Oct 26 2009  4:30 PM GMT
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
0
46795 pts.
0
A:
 RATE THIS ANSWER
0
Click to Vote:
  •   0
  •  0
  • AddThis Social Bookmark Button
The first place to look would be the execution plans for your long running queries. From there you can figure out the indexes which need to be adjusted or created so that the queries will speed up. If you have all the indexes in place this white paper will explain what database maintenance needs to be setup and why.

Once all tables are properly tuned you may need to update your statistics if you aren't doing that already.

Next check your RAM configuration to make sure that you have enough RAM to hold the data in the buffer cache that you need. If your buffer hit ratio is to low you may need more RAM.

After that you may need to look at your storage subsystem to ensure that it is powerfull enough.
Last Answered: Oct 27 2009  3:31 AM GMT by Mrdenny   46795 pts.
0
0
Discuss This Answer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _



0