Skip to content

Instantly share code, notes, and snippets.

@ef2k
Created November 3, 2014 03:22
Show Gist options
  • Select an option

  • Save ef2k/0e567a1811a7dff8a893 to your computer and use it in GitHub Desktop.

Select an option

Save ef2k/0e567a1811a7dff8a893 to your computer and use it in GitHub Desktop.
Check DB Size
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;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment