MySQL Query Profiler

This blog article shows you how to trace the SQL Statement in MySQL. In order to reproduce what I have done using the guide, the URL at the bottom, you need to install the sakila sample database to your MySQL server.

Below are the SQL commands that I issued to MySQL server.

The first line is for you to connect to your MySQL using the command prompt.

mysql -u root -p

SELECT * FROM performance_schema.setup_actors;

UPDATE performance_schema.setup_actors SET ENABLED = ‘NO’, HISTORY = ‘NO’ WHERE HOST = ‘%’ AND USER = ‘%’;

I have also created a user named test_user before excuse the line below.

Also: Create User in MySQL and Assign Privilege

INSERT INTO performance_schema.setup_actors (HOST,USER,ROLE,ENABLED,HISTORY) VALUES(‘localhost’,‘test_user’,’%’,’YES’,’YES’);

UPDATE performance_schema.setup_instruments SET ENABLED = ‘YES’, TIMED = ‘YES’ WHERE NAME LIKE ‘%statement/%’;

UPDATE performance_schema.setup_instruments SET ENABLED = ‘YES’, TIMED = ‘YES’ WHERE NAME LIKE ‘%stage/%’;

UPDATE performance_schema.setup_consumers SET ENABLED = ‘YES’ WHERE NAME LIKE ‘%events_statements_%’;

UPDATE performance_schema.setup_consumers SET ENABLED = ‘YES’ WHERE NAME LIKE ‘%events_stages_%’;

SELECT
* FROM actor
WHERE
actor_id
=
1

SELECT EVENT_ID, TRUNCATE(TIMER_WAIT/1000000000000,6) as Duration, SQL_TEXT FROM performance_schema.events_statements_history_long WHERE SQL_TEXT like ‘%1%’;

You should be about to find the SQL Statement that you want to trace like the one above.

Source code download: https://github.com/chanmmn/mysql/tree/main/2024/MySQLProfiling/?WT.mc_id=DP-MVP-36769

Reference: https://dev.mysql.com/doc/refman/8.0/en/performance-schema-query-profiling.html?WT.mc_id=DP-MVP-36769

About chanmingman

Since March 2011 Microsoft Live Spaces migrated to Wordpress (http://www.pcworld.com/article/206455/Microsoft_Live_Spaces_Moves_to_WordPress_An_FAQ.html) till now, I have is over 1 million viewers. This blog is about more than 50% telling you how to resolve error messages, especial for Microsoft products. The blog also has a lot of guidance teaching you how to get stated certain Microsoft technologies. The blog also uses as a help to keep my memory. The blog is never meant to give people consulting services or silver bullet solutions. It is a contribution to the community. Thanks for your support over the years. Ming Man is Microsoft MVP since year 2006. He is a software development manager for a multinational company. With 25 years of experience in the IT field, he has developed system using Clipper, COBOL, VB5, VB6, VB.NET, Java and C #. He has been using Visual Studio (.NET) since the Beta back in year 2000. He and the team have developed many projects using .NET platform such as SCM, and HR based applications. He is familiar with the N-Tier design of business application and is also an expert with database experience in MS SQL, Oracle and AS 400.
This entry was posted in .Net, Cloud, Community, Computers and Internet, Data Platform and tagged . Bookmark the permalink.

1 Response to MySQL Query Profiler

  1. Pingback: Find Dependencies of Database Table in MySql | Chanmingman's Blog

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.