반응형
-- tablespace 총량
select spcname, pg_size_pretty(pg_tablespace_size(spcname))
from pg_tablespace;
-- table size (index 미포함)
select pg_relation_size('table');
-- index size
select pg_relation_size('idx1');
-- total size(data + index)
select pg_total_relation_size('table1');
-- DB size 단위적용 : pg_size_pretty()
select pg_total_relation_size('DBname');
반응형
'[DB] POSTGRESQL' 카테고리의 다른 글
[PostgreSQL] SQL 파일 실행 (0) | 2020.06.26 |
---|---|
[PostgreSQL] postgresql job for postgresql-11.service failed because the control process exited with error code (0) | 2020.06.26 |
[PostgreSQL] Schema 관리(생성/추가/변경/삭제) (0) | 2020.04.06 |
[PostgreSQL] 시간 데이터타입 쿼리/함수 (0) | 2020.04.01 |
[PostgreSQL] Tablespace 관리 (0) | 2020.04.01 |