▣ Buffer Cache 부족시 증상
a. Latch : cache buffer chains
b. Latch : cache buffer LRU chains ↑
c. Buffer busy waits ↑
d. Read waits ↑
e. Free buffer waits ↑
f. Cache hit ratio ↓
▣ hot Block 검색
관련질의
select * from (select owner,object_name,
object_type,statistic_name,sum(value)
from v$segment_statistics
group by owner,object_name,object_type,statistic_name
order by sum(value) desc)
where rownum<10
▣ Buffer Busy Waits
▣ Calculating the Buffer Cache Hit Ratio(캐시 값 확인)
▣ Read Waits
※ Timeouts이 없다는 것은 정상
▣ db_cache_advice의 value를 on 해야 뷰 확인 가능
▣ Caching tables 생성 방법
Alter table 테이블명 cache;
and
EM 지원
▣ Automatically Tuned Multiblock Read
아무리 크게 잡혀 있어도 64*1024 만큼 돈다
db_file_multiblock_read_count에서의 value는 8로 하나 16으로 하나 값은 64*1024에 따르기 때문에 8로 해도 상관 없음
▣ 버퍼캐시 모니터링 하는 뷰