PostgreSQL テーブルのサイズを調べる
PostgreSQL テーブルのサイズを調べる
SQL
select relname, reltuples as rows, (relpages*8192) as bytes from pg_class where relname='テーブル名';
結果
relname | rows | bytes ---------------------+--------+----------- テーブル名 | 954322 | 104259584 (1 row)