Created
October 16, 2019 06:49
-
-
Save ajepe/be9db0378759973da752c2802d08586d to your computer and use it in GitHub Desktop.
Get database size
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
select t1.datname AS db_name, | |
pg_size_pretty(pg_database_size(t1.datname)) as db_size | |
from pg_database t1 | |
order by pg_database_size(t1.datname) desc; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment