Archive | August 2013

You are browsing the site archives by date.

How to get size of mysql database in MB ?

Run this query and you’ll get the size of databases in MB   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;