What is the command to find the size of all the databases?
I am able to find the size of a specific database by using following command:
-- Database Size SELECT pg_size_pretty(pg_database_size('Database Name')); -- Table Size SELECT pg_size_pretty(pg_relation_size('table_name'));