Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MySql query analyzer - free solutions [closed]

Tags:

Is there a good Query Analyzer for MySQL (that's either free, or has a trial), that can analyse a query and make suggestions for indexes, like the "Display estimated execution plan" in Microsoft SQL Server management studio?

like image 402
frank Avatar asked Jan 13 '10 13:01

frank


People also ask

How do I open SQL query Analyzer?

To run the query in Query Analyzer, first paste the contents into Query Analyzer, then go to the toolbar and select Query | Show Execution Plan. Next, highlight the SQL to execute and press F5.

What is MySQL query analyzer?

The MySQL Query Analyzer enables you to monitor SQL statements executed on a MySQL server and displays the details of each query, number of executions and execution times. Similar queries with different literal values are combined for reporting purposes.

Is there a profiler for MySQL?

Query Profiler, built into dbForge Studio for MySQL, is the best query optimization tool to tune MySQL queries and investigate query performance issues in an efficient and fast way. It helps build up a picture of how the queries are run to access data and what operations impact your application.


2 Answers

You may want to try Percona tools for MySQL. Look at this article

like image 196
Yaronius Avatar answered Sep 28 '22 19:09

Yaronius


Maybe "MySQL Explain Explain" can help (verbose version of MySQL EXPLAIN command, forkable on github).

like image 22
rap-2-h Avatar answered Sep 28 '22 19:09

rap-2-h