What are the steps you will take to improve performance of a poor performing query?

 Posted by V-rajbog on 3/29/2011 | Category: Sql Server Interview questions | Views: 5893 | Points: 40
Answer:

This is a very open ended question and there could be a lot of reasons behind the poor performance of a query. But some general issues that you could talk about would be: No indexes, table scans, missing or out of date statistics, blocking, excess recompilations of stored procedures, procedures and triggers without SET NOCOUNT ON, poorly written query with unnecessarily complicated joins, too much normalization, excess usage of cursors and temporary tables. Some of the tools/ways that help you troubleshooting performance problems are: SET SHOWPLAN_ALL ON, SET SHOWPLAN_TEXT ON, SET STATISTICS IO ON, SQL Server Profiler, Windows NT /2000 Performance monitor, Graphical execution plan in Query Analyzer.


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Posted by: Questpond on: 3/30/2011 | Points: 10
Good answer just to add talk about the query optimization and profiler tool below is a nice video which talks about it

http://www.youtube.com/watch?v=AaPaIVI-yyI

Login to post response

More Interview Questions by V-rajbog