Last active
April 25, 2018 14:20
-
-
Save arkadiusjonczek/685fb8a2bc2d574fb125fc94c6e22fad to your computer and use it in GitHub Desktop.
MySQL Show Database Used and Free Size #tags: MySQL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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