Created
October 22, 2013 07:29
-
-
Save tairov/7096524 to your computer and use it in GitHub Desktop.
postgres, database, size
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 d.datname AS Name, pg_catalog.pg_get_userbyid(d.datdba) AS Owner, | |
| CASE WHEN pg_catalog.has_database_privilege(d.datname, 'CONNECT') | |
| THEN pg_catalog.pg_size_pretty(pg_catalog.pg_database_size(d.datname)) | |
| ELSE 'No Access' | |
| END AS Size | |
| FROM pg_catalog.pg_database d | |
| ORDER BY | |
| CASE WHEN pg_catalog.has_database_privilege(d.datname, 'CONNECT') | |
| THEN pg_catalog.pg_database_size(d.datname) | |
| ELSE NULL | |
| END DESC -- nulls first | |
| LIMIT 20 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment