select table_name, pg_relation_size(quote_ident(table_name))
from information_schema.tables
where table_schema = 'public'
order by 2
Pokazuje rozmiar wszystkich tabel w schemacie public
jeśli masz wiele schematów, możesz użyć:
select table_schema, table_name, pg_relation_size('"'||table_schema||'"."'||table_name||'"')
from information_schema.tables
order by 3
Przykład SQLFiddle:http://sqlfiddle.com/#!15/13157/3
Lista wszystkich funkcji rozmiaru obiektu w podręczniku.