Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Profiler equivalent for MySql? [closed]

"Microsoft SQL Server Profiler is a graphical user interface to SQL Trace for monitoring an instance of the Database Engine or Analysis Services."

I find using SQL Server Profiler extremely useful during development, testing and when I am debugging database application problems. Does anybody know if there is an equivalent program for MySql?

like image 814
Andrew Rimmer Avatar asked Aug 21 '08 15:08

Andrew Rimmer


People also ask

Does MySQL have a Profiler?

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.

What replaced SQL Profiler?

A new hope: The Extended Events (XE) XE will replace the SQL Profiler in the future versions. By the moment, SQL Server includes Profiler and XE. The XEs is a feature included in SQL Server 2008. It is a lighter option that consumes less resources than the Profiler.

How do I trace a MySQL query?

Open SQL Server Profiler Just search for the tool on your computer where SQL server is running. It should automatically come with the installation. Once that is open you click 'file/new trace' and connect to the database similar to when opening SQL server management studio.

What is Jet Profiler?

Jet Profiler focuses on queries, tables and users. This gives you the information you need in order to quickly fix performance problems in your code, such as most frequent queries, most used tables or the busiest users.


1 Answers

Something cool that is in version 5.0.37 of the community server is MySQL's new profiler.

This may give you what info you are looking for.

like image 145
Buggabill Avatar answered Sep 18 '22 15:09

Buggabill