Find out slow SQL of mysql

Source: Internet
Author: User

Find out slow SQL of mysql Recent days, I shocould do a SQL tuning for a mysql database, and I know a bit of mysql db. in order to find the slow SQL, I do the slow_query_log on to collect the slow SQL.

[sql]mysql> show variables like 'slow%';  +---------------------+-------------------------------------------+  | Variable_name       | Value                                     |  +---------------------+-------------------------------------------+  | slow_launch_time    | 2                                         |  | slow_query_log      | ON                                        |  | slow_query_log_file | /opt/mysql_data/mysql/mysql-test-slow.log |  +---------------------+-------------------------------------------+  3 rows in set (0.00 sec)    mysql> set global slow_launch_time=5;  Query OK, 0 rows affected (0.00 sec)    mysql> show variables like 'slow%';  +---------------------+-------------------------------------------+  | Variable_name       | Value                                     |  +---------------------+-------------------------------------------+  | slow_launch_time    | 5                                         |  | slow_query_log      | ON                                        |  | slow_query_log_file | /opt/mysql_data/mysql/mysql-test-slow.log |  +---------------------+-------------------------------------------+  3 rows in set (0.00 sec)  We can read  /opt/mysql_data/mysql/mysql-test-slow.log  to find slow sql.

 


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.