performance - Oracle error explanation -
just accident found out have performance monitoring tool oracle-db tried out performance issues. software gives me following alerts:
- sql library cache miss rate (somewhere arround 80%)
- latch waits (somewhere between 4-5%) of non-idle wait time
- datafile random read avg time 200ms
can explain me means database , me?
sql library cache miss rate means when execute query of time (80%) not in cache, i.e. has not been seen before recently. result, 80% of queries need evaluated , compiled scratch. indicates not using bind variables (so every single sql little different).
Comments
Post a Comment