본문 바로가기
Database/Oracle

인덱스가 망가진 정도 조회(rebuild 필요여부 확인)

by BeGeek 2015. 2. 10.

인덱스가 망가진 정도 조회

인덱스 상태 분석

analyze index 테이블명 validate structure;
ex> analyze index bigtable_idx1 validate structure;

인덱스 밸런스 확인
select (del_lf_rows_len / lf_rows_len)*100 as balancing
from index_stats;

balancing이 20% 초과시 성능저하 상태이므로 rebuild 필요

 

댓글