Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Dictionary Cache HIT Ratio
Hi All,
What is the best SQL to determine Dictionary Cache Hit Ratio?
In Online manuals I found this,
select (sum(gets - getmisses - usage - fixed)) /sum(gets) " Row Cache " from v$rowcache ;
It doesn't seem to be acceptable to me ...................
I think, the better (if not best) SQL could be
select (sum(gets - getmisses - fixed)) /sum(gets - fixed) " Row Cache " from v$rowcache ;
Please correct me if I am wrong. Thanks for your opinion ...
Regards, Received on Sun Oct 15 2000 - 23:40:32 CDT
![]() |
![]() |