DB 디스크 공간 관리
Tibero 데이터베이스 디스크 공간 관리에 대해 설명합니다.
빈번한 Extents 발생
SELECT owner,
segment_name,
segment_type,
tablespace_name,
count(*) numext,
round(sum(bytes)/1024/1024, 1) MB
FROM dba_extents
WHERE owner not in ('SYS','SYSCAT')
GROUP BY segment_name,
segment_type ,
owner,
tablespace_name
HAVING COUNT(extent_id) > 40
ORDER BY segment_type,
round(sum(bytes)/1024/1024, 1) desc,
segment_name;Tablespace 사용량
Undo 세그먼트 사용률
Undo 세그먼트 조회
Single DB
TAC DB
현재 사용 중인 Undo 확인
Single DB
TAC DB
Undo 세그먼트의 수동 감소
Last updated

