Home > Oracle Tips > Oracle Database Administrator > Determining the hit ratio of Oracle databases
Oracle Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

ORACLE DATABASE ADMINISTRATOR

Determining the hit ratio of Oracle databases


PETER CHOI
02.03.2003
Rating: -3.00- (out of 5)


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


This script is useful for determining the hit ratio of your database. The hit ratio determines if Oracle is performing more physical reads to retrieve the data. If the data being queried is found in the buffer cache, the hit ratio will be higher than if the data is not cached a Oracle has to retrieve it from disk. The original script is by Salim Dawood (1995). Some modifications were added by me later. It has been tested on Oracle 7.3, 8i (8.1.7).

Note: A general rule of thumb for OLTP systmes is that if the hit ratio falls below 70%-80%, the DBA should investigate the cause.

prompt
prompt *********************************************************************
prompt * Hit Ratio = (1 - (physical reads/(db block gets+consistent gets))*100
prompt *********************************************************************
prompt

column log_reads  format 999,999,999,999
column phy_reads  format 999,999,999,999
column phy_writes format 999,999,999,999

select A.value + B.value Log_Reads, 
       C.value Phy_Reads,
       D.value Phy_Writes
from   v$sysstat A, v$sysstat B, v$sysstat C, v$sysstat D
where  A.name = 'db block gets'
and    B.name = 'consistent gets'
and    C.name = 'physical reads'
and    D.name = 'physical writes'
/

Reader Feedback

Paresh Y. writes: This is a pretty old theory and yes hit ratios can be useful if used properly. This caution is missing in the tip which I hope is by oversight and not due to lack of knowledge: e.g., I can have an inefficient query/procedure that is reading the data from the buffer cache again and again and driving the hit ratios to above the 90% range. This will hide the effects of other queries with poor effect on the hit ratio. The solution is if the hit ratio is low there is something definitely wrong (as the tip says correctly) but if the hit ratio is high, that doesn't mean it is time for the DBA to relax. You still need to investigate further if any particular query is driving this ratio to artificially high level.

Stephen W. writes: Interesting tip. You could also add this formula to calculate the percentage:

(C.value/(A.value + B.value))) * 100 Hit_ratio.

I would like to know how to determine the optimum size of buffer cache for our DB.

For More Information

  • Feedback: E-mail the editor with your thoughts about this tip.
  • More tips: Hundreds of free Oracle tips and scripts.
  • Tip contest: Have an Oracle tip to offer your fellow DBAs and developers? The best tips submitted will receive a cool prize -- submit your tip today!
  • Ask the Experts: Our SQL, database design, Oracle, SQL Server, DB2, metadata, and data warehousing gurus are waiting to answer your toughest questions.
  • Forums: Ask your technical Oracle questions--or help out your peers by answering them--in our active forums.
  • Best Web Links: Oracle tips, tutorials, and scripts from around the Web.

Rate this Tip
To rate tips, you must be a member of SearchOracle.com.
Register now to start rating these tips. Log in if you are already a member.


Submit a Tip




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


RELATED CONTENT
Oracle Database Administrator
What is the difference between a database engineer, architect and administrator?
Import on one table from dump file
Error during RMAN backup
Can I drop a column in SYS schema?
STATSPACK tool: transaction vs. execution measurement
Should I port from Microsoft Access?
Installing multiple Oracle homes
How can I find statistics on total memory usage and database connections?
Modifying SYS password in a RAC environment
How to create Datafiles in a Data Guard (10g) environment

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.

HomeNewsTopicsTipsAsk the ExpertsMultimediaWhite PapersProductsBlogs
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides enterprise IT professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective IT purchase decisions and managing their organizations' IT projects - with its network of technology-specific Web sites, events and magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Reprints  |  Site Map




All Rights Reserved, Copyright 2003 - 2008, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts