PostgreSQL 테이블스페이스 및 오브젝트 사용량 확인
PostgreSQL 테이블스페이스 및 오브젝트 사용량 확인 테이블스페이스 총량 postgres=# select spcname, pg_size_pretty(pg_tablespace_size(spcname)) from pg_tablespace; Table Size (Index 미포함) postgres=# select pg_relation_size(‘TableName’); Table Size (Index 포함) postgres=# select pg_total_relation_size(‘TableName’); Index size postgres=# select pg_relation_size(‘IndexName’); Total Size (...
최신 댓글