Skip to content

Instantly share code, notes, and snippets.

@minhd
Last active May 23, 2019 00:13
Show Gist options
  • Save minhd/364ffebcc426362602e45601e7b68c18 to your computer and use it in GitHub Desktop.
Save minhd/364ffebcc426362602e45601e7b68c18 to your computer and use it in GitHub Desktop.
Get size of mysql database
SELECT table_schema "DB Name",
ROUND(SUM(data_length + index_length) / 1024 / 1024, 1) "DB Size in MB"
FROM information_schema.tables
WHERE table_schema like 'dbs%'
GROUP BY table_schema;
SELECT
SUM(ROUND(((DATA_LENGTH + INDEX_LENGTH) / 1024 / 1024 / 1024), 2)) AS "SIZE IN GB"
FROM INFORMATION_SCHEMA.TABLES
WHERE
TABLE_SCHEMA = "SCHEMA-NAME";
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;
mysqldiskusage --server=root:MyPassword@localhost pics
+----------+----------------+
| db_name | total |
+----------+----------------+
| pics | 1,179,131,029 |
+----------+----------------+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment