postgres get size of database
SELECT pg_size_pretty( pg_database_size('dbname') );
postgres get size of database
SELECT pg_size_pretty( pg_database_size('dbname') );
postgres database sizes
/* For multiple databases */
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;
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us