Actions
MySQL¶
Databases Sizes¶
SELECT table_schema AS dbname, ROUND( SUM( data_length + index_length ) /1024 /1024, 1 ) AS size FROM information_schema.tables GROUP BY table_schema ORDER BY size DESC
Updated by Marc Dequènes over 6 years ago · 1 revisions