>데이터 베이스 >MySQL 튜토리얼 >Find out slow sql of mysql_MySQL

Find out slow sql of mysql_MySQL

WBOY
WBOY원래의
2016-06-01 13:31:02862검색

bitsCN.com

Find out slow sql of mysql

 

Recent days, I should 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.

 


bitsCN.com
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.