Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Looking at the Dictionary Cache

  • Source: http://www.oreilly.com/catalog/oracle2/chapter/ch10.html
  • The dictionary cache miss ratio should ideally be less than 1%, although when the database is first started, the miss ratio will be higher because each dictionary item loaded into memory will record a miss. If the miss ratio is greater than 2% and you have spare memory, increase your SHARED_POOL_SIZE. If the ratio has decreased, you should have improved your performance.
    • Code Block
      SELECT
          SUM(GETS) "Gets",
          SUM(GETMISSES) "Misses",
          TO_CHAR(SUM(getmisses) / SUM(gets) * 100 , '999.99')||'%' "Miss Ratio"
      FROM
          v$rowcache;
      

...