データベースごとの容量を調べる

Last-modified: Sun, 18 Dec 2016 16:08:04 JST (2777d)
Top > データベースごとの容量を調べる

MySQLでデータベースごとの容量を見る。

参考

select table_schema, sum(data_length+index_length) /1024 /1024/1024 as GB from information_schema.tables  group by table_schema order by sum(data_length+index_length) desc;

Counter: 641, today: 1, yesterday: 3

このページの参照回数は、641です。