Exécutez cette requête et vous obtiendrez probablement ce que vous cherchez :
SELECT table_schema "DB Name",
ROUND(SUM(data_length + index_length) / 1024 / 1024, 1) "DB Size in MB"
FROM information_schema.tables
GROUP BY table_schema;
Cette requête provient des les forums mysql , où des instructions plus complètes sont disponibles.