728x90
반응형
-- tablespace 총량
select spcname, pg_size_pretty(pg_tablespace_size(spcname))
from pg_tablespace;
-- table size (index 미포함)
select pg_size_pretty(pg_relation_size('table'));
-- index size
select pg_size_pretty(pg_relation_size('idx1'));
-- total size(data + index)
select pg_size_pretty(pg_total_relation_size('table1'));
-- DB size 단위적용 : pg_size_pretty()
728x90
반응형
'데이터베이스 > Postgresql' 카테고리의 다른 글
[PostgreSQL] 기본 조회 명령어 및 변수 선언, 설정 (0) | 2021.07.16 |
---|---|
[PostgreSQL] 계정/유저관리 (0) | 2021.07.16 |
[PostgreSQL] database 관리(생성/추가/삭제/변경) (0) | 2021.07.16 |
[PostgreSQL] Tablespace 생성 (0) | 2021.07.16 |
사용자 생성 (0) | 2021.05.10 |
댓글