Does anyone have an information about a good query profiler?? By query i mean about 5 page search query.The profiler should be such as which gives the bottleneck in the query. thanks

link|improve this question

15% accept rate
2  
which database? – Faisal Feroz Oct 26 '10 at 10:15
possible duplicate of Mysql optimisation tool – Mark Bannister Oct 26 '10 at 10:51
Ironically, the OP does appear to have accepted an answer on the duplicate post. – Mark Bannister Oct 26 '10 at 10:52
feedback

1 Answer

up vote 2 down vote accepted

Depends on the database engine you use...

If it's Sybase, use set statistics (io, time) and set queryplan on.

In MySQL, you can do EXPLAIN <query>. More approaches are in this blog entry: "MySQL Performance Monitoring and Optimization Tools"

In MS SQL Server use SQL Servefr Profiler

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.