MySQL查找SQL耗时瓶颈 SHOW profiles

http://blog.csdn.net/k_scott/article/details/8804384

1、首先查看是否开启profiling功能
  1. SHOW VARIABLES LIKE '%pro%';

或者

  1. SELECT @@profiling;

2、开启profiling

  1. SET profiling=1;

3、执行sql语句

例如:

  1. SELECT
  2. table_schema AS 'Db Name',
  3. ROUND( SUM( data_length + index_length ) / 1024 / 1024, 3 ) AS 'Db Size (MB)',
  4. ROUND( SUM( data_free ) / 1024 / 1024, 3 ) AS 'Free Space (MB)'
  5. FROM information_schema.tables
  6. GROUP BY table_schema ;

4、查看结果

  1. SHOW profiles;
  1. SHOW profile ALL FOR QUERY 94;

94是查询ID号。

SHOW profiles语法:

  1. SHOW PROFILE [type [, type] … ]
  2. [FOR QUERY n]
  3. [LIMIT row_count [OFFSET offset]]
  4. type:
  5. ALL
  6. | BLOCK IO
  7. | CONTEXT SWITCHES
  8. | CPU
  9. | IPC
  10. | MEMORY
  11. | PAGE FAULTS
  12. | SOURCE
  13. | SWAPS
 
 
 
上一篇:如何在IIS 中配置应用程序(Convert to Application)?


下一篇:在 IIS 中配置 ASP.NET 应用程序