RsD0p9BK
7/14/2017 - 9:40 AM

mysql__db_size.sql

-- How to get size of mysql database?

SELECT table_schema, Round(Sum(data_length + index_length) / 1024 / 1024, 1) "DB Size in MB" 
FROM information_schema.tables 
GROUP BY table_schema; 

-- https://stackoverflow.com/questions/1733507/how-to-get-size-of-mysql-database