select table_name, pg_relation_size(quote_ident(table_name))
from information_schema.tables
where table_schema = 'public'
order by 2
これにより、スキーマpublic
内のすべてのテーブルのサイズが表示されます 複数のスキーマがある場合は、次を使用することをお勧めします:
select table_schema, table_name, pg_relation_size('"'||table_schema||'"."'||table_name||'"')
from information_schema.tables
order by 3
SQLFiddleの例:http://sqlfiddle.com/#!15/13157/3
マニュアルにあるすべてのオブジェクトサイズ関数のリスト。