GB単位でDBのサイズを確認 May 15, 2018 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; データベースとテーブルのサイズを確認する方法 - ふってもハレても