查看mysql数据库各个库资源使用情况
Posted 玄机
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查看mysql数据库各个库资源使用情况相关的知识,希望对你有一定的参考价值。
select
table_schema as \'数据库\',
sum(table_rows) as \'记录数\',
sum(truncate(data_length/1024/1024, 2)) as \'数据容量(MB)\',
sum(truncate(index_length/1024/1024, 2)) as \'索引容量(MB)\'
from information_schema.tables
group by table_schema
order by sum(data_length) desc, sum(index_length) desc;
以上是关于查看mysql数据库各个库资源使用情况的主要内容,如果未能解决你的问题,请参考以下文章