|
* Cache Hit Ratio : ÀÌ°Í ¿ª½Ã db startup ÀÌÈÄ ¾î´ÀÁ¤µµ ¾ÈÁ¤µÇ°Ô »ç¿ëÇÑ ÈÄ °è»êÇØ¾ß ¸Â´Ù.
SQL> select 1-(phy.value / (cur.value+con.value)) " Cache Hit Ratio"
2 from v$sysstat cur, v$sysstat con, v$sysstat phy
3 where cur.name = 'db block gets'
4 and con.name = 'consistent gets'
5 and phy.name = 'physical reads';
Cache Hit Ratio----------------
.95751146 > 90%
À§¿¡¼ db block gets + consistent gets = logical gets À̹ǷÎ
1-(physical gets / logical gets) °¡ cache hit ratioÀÌ´Ù.
|