Created
May 18, 2016 02:37
-
-
Save adamharder/75b3fbb2409a6f8be2a46f0b992adf99 to your computer and use it in GitHub Desktop.
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
| ## Show size of all tables | |
| 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