Created
November 1, 2024 01:06
-
-
Save akramarev/872f32713606f79965c8da26aeec658d to your computer and use it in GitHub Desktop.
[postgres, db sizes]
This file contains hidden or 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
SELECT pg_database.datname, | |
pg_database_size(pg_database.datname), | |
pg_size_pretty(pg_database_size(pg_database.datname)) AS size | |
FROM pg_database |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment