码迷,mamicode.com
首页 > 数据库 > 详细

使用Profiles分析SQL语句执行时间和消耗资源

时间:2015-08-07 13:28:04      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:mysql   profiling   

打开profiling,默认是没开启的.

mysql> set profiling=1;

执行要分析的SQL语句

mysql> select count(1) from wechat_employee,Employee;

显示profiles表

mysql> show profiles;

查询结果:

+----------+------------+-----------------------------------------------+
| Query_ID | Duration   | Query                                         |
+----------+------------+-----------------------------------------------+
|        1 | 0.00072975 | select count(1) from wechat_employee,Employee |
|        2 | 0.00028450 | set profiling=1                               |
|        3 | 0.00324875 | select count(1) from wechat_employee,Employee |
+----------+------------+-----------------------------------------------+

查询详细信息:

show profile cpu,block io for query 3;

结果:

+--------------------------------+----------+----------+------------+--------------+---------------+
| Status                         | Duration | CPU_user | CPU_system | Block_ops_in | Block_ops_out |
+--------------------------------+----------+----------+------------+--------------+---------------+
| starting                       | 0.000041 | 0.000000 |   0.000000 |            0 |             0 |
| Waiting for query cache lock   | 0.000073 | 0.000000 |   0.000000 |            0 |             0 |
| checking query cache for query | 0.000025 | 0.000000 |   0.000000 |            0 |             0 |
| checking privileges on cached  | 0.000023 | 0.000000 |   0.000000 |            0 |             0 |
| checking permissions           | 0.000018 | 0.000000 |   0.000000 |            0 |             0 |
| checking permissions           | 0.000012 | 0.000000 |   0.000000 |            0 |             0 |
| sending cached result to clien | 0.003009 | 0.000000 |   0.004000 |            0 |             0 |
| logging slow query             | 0.000032 | 0.000000 |   0.000000 |            0 |             0 |
| cleaning up                    | 0.000018 | 0.000000 |   0.000000 |            0 |             0 |
+--------------------------------+----------+----------+------------+--------------+---------------+
9 rows in set (0.00 sec)

版权声明:本文为博主原创文章,未经博主允许不得转载。

使用Profiles分析SQL语句执行时间和消耗资源

标签:mysql   profiling   

原文地址:http://blog.csdn.net/u013011841/article/details/47336581

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!