Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Buffer Hit Ratio

Re: Buffer Hit Ratio

From: Sebastian Rehm <sebastian.rehm_at_de.bosch.com>
Date: Wed, 09 Jun 1999 10:18:42 +0200
Message-ID: <375E2362.6283177C@de.bosch.com>


I don't know whats going wrong with the code ... use the following to calculate the buffer hit ratio:

select (1 - (phy.value /( cur.value + con.value ))) * 100 hit_ratio from v$sysstat cur, v$sysstat con, v$sysstat phy where cur.name = 'db block gets' and
con.name = 'consistent gets' and
phy.name = 'physical reads'
/

Sebastian

Verma wrote:

> Any clue what is going wrong ?
Received on Wed Jun 09 1999 - 03:18:42 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US