Query for Postgres database sizes 0
If you need to figure out how big your postgres databases are, this query can come in pretty useful.
SELECT
pg_database.datname,
pg_size_pretty(pg_database_size(pg_database.datname)) AS size
FROM
pg_database
JOIN
pg_shadow ON pg_database.datdba = pg_shadow.usesysid
ORDER BY
pg_database_size(pg_database.datname) desc;
You may need to log in as postgres to get the privilege to look at the pg_shadow tables.
