查看配置参数可以用下面的命令: show variables like
'%innodb%'; #查看innodb相关配置参数 show
status like
'%innodb%';
#查看innodb相关的运行时参数 show global
status like 'open%tables';
# 查看全局的运行时参数,加上global是对当前mysql服务器中运行的所有数据库实例进行统计。
explain来了解SQL执行的状态。explain select * from wp_posts\G;使用show status
like "Handler_read%"; 来了解索引的效果。Handler_read_key
值高表示索引效果好,Handler_read_rnd_next值高表示索引低效。
在Show processlist输出中的Status项: 5.1手册中没有的或者翻译有问题的,都附带5.5原文说明: After
create This occurs when the thread creates a table (including
internal temporary ta...