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

Last-modified: Sun, 18 Dec 2016 16:08:04 JST (2914d)
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: 727, today: 2, yesterday: 2

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