Skip to content

Instantly share code, notes, and snippets.

@arkadiusjonczek
Last active April 25, 2018 14:20
Show Gist options
  • Save arkadiusjonczek/685fb8a2bc2d574fb125fc94c6e22fad to your computer and use it in GitHub Desktop.
Save arkadiusjonczek/685fb8a2bc2d574fb125fc94c6e22fad to your computer and use it in GitHub Desktop.
MySQL Show Database Used and Free Size #tags: MySQL
-- Query 1
SELECT
sum(round(((data_length + index_length) / 1024 / 1024 / 1024), 2)) as "Size in GB"
FROM
information_schema.TABLES
WHERE
table_schema = "ods"
-- Query 2
SELECT
table_schema "database name",
sum( data_length + index_length ) / 1024 / 1024 "database size in MB",
sum( data_free )/ 1024 / 1024 "free space 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