mysql: 了解数据库状态时常用的sql语句

show table status like ‘some_table’

它会给出本表的storage engine, 行数,表占的空间和索引所占的空间。还有一个有意思的信息:每行平均所占的空间。这个信息不仅可用于DB管理,也可以帮助在整个信息系统中估计各种存储空间、网络带宽之类的。

show variables like ‘%slow%’

show variables  like ‘%long%’;  

了解慢查询相关的设置

show variables like ‘storage_engine’;

查看当前默认的storage engine

show full processlist

当前连到本库的客户端进程

show variables like ‘query_cache_type’

查看数据库的query cache设置

Leave a Comment

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.