MySQL: Check size of DB

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; 
Luis Romero