SQL> select name, value from v$sysstat
where name in ('physical reads cache prefetch','prefetched blocks aged out before use');
NAME VALUE
---------------------------------------------------------------- ----------
physical reads cache prefetch 344772803
prefetched blocks aged out before use 38767867
_index_prefetch_factor
: 기본값은 100이며, 이 값을 더 작게 설정할수록 옵티마이저는 인덱스 Prefetch를 더 선호하게 된다._db_file_noncontig_mblock_read_count
: 한번에 최대 몇 개 블록을 Prefetch 할지를 지정하며 1로 지정하면 Prefetch 기능이 정지된다.테이블 Prefetch
= 테이블 Lookup Prefetch
= 데이터 블록 Prefetch
_table_lookup_prefetrch_size
: 기본 값은 40이다._table_lookup_prefetch_thresh
: 기본값은 2이다._multi_join_key_table_lookup
: 기본값은 TRUE다.