Hi,
Using the followings script gives an overview of some miss/hit ratio on some parameters. What has happened with dc_table_scns and dc_qmc_cache_entries?? Who can tell me more about these two params and expain me how to deal with them??
select parameter,
gets,
getmisses,
round(getmisses/(gets+getmisses)*100,5) "miss ratio",
round((1-(sum(getmisses)/(sum(gets)+sum(getmisses)))
*100,5) "hit ratio"
from v$rowcache
where gets+getmisses <> 0
group by parameter, gets, getmisses
Hi GKramer,
There isn't anything you can do to increase memory specifically for the dictionary cache.
The DC* parameters from V7 are dynamicly tuned by Oracle.
Bookmarks