Use the following query to calculate the buffer cache hit ratio using the formulae given below the code:
Hit Ratio = 1 - ((physical reads - physical reads direct - physical reads direct (lob)) /Code:SELECT NAME, VALUE FROM V$SYSSTAT WHERE NAME IN ('session logical reads','physical reads', 'physical reads direct','physical reads direct (lob)');
(db block gets + consistent gets - physical reads direct - physical reads direct (lob))
This should be > 95%
Use the following link for the shared pool: http://download-west.oracle.com/docs...mory.htm#32137
HTH.




Reply With Quote