Answers for "how to check size postgresql in linux"

3

postgres check size table

SELECT pg_size_pretty( pg_total_relation_size('tablename') );
Posted by: Guest on June-15-2020
1

find size of all DB's postgres

CopySELECT pg_database.datname as "database_name", pg_database_size(pg_database.datname)/1024/1024 AS size_in_mb FROM pg_database ORDER by size_in_mb DESC;
Posted by: Guest on April-27-2020

Code answers related to "how to check size postgresql in linux"

Browse Popular Code Answers by Language