Skip to content

Instantly share code, notes, and snippets.

@cferthorney
Last active June 28, 2021 14:24
Show Gist options
  • Save cferthorney/0420330d4c86ed5f78b0864bf2d97e05 to your computer and use it in GitHub Desktop.
Save cferthorney/0420330d4c86ed5f78b0864bf2d97e05 to your computer and use it in GitHub Desktop.
MySQL Table and 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;
/* Omit WHERE for all DB */
SELECT
table_schema as `Database`,
table_name AS `Table`,
round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB`
FROM information_schema.TABLES
WHERE table_schema = '$DB_NAME'
ORDER BY (data_length + index_length) DESC;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment