Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Cache Hit Ratio from system views
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 1 - 25 of 161 - Collapse all  -  Translate all to Translated (View all originals)   Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Teresa Masino  
View profile  
 More options Aug 8 2007, 11:57 am
Newsgroups: comp.databases.oracle.server
From: Teresa Masino <teresa.mas...@peninsula.org>
Date: Wed, 08 Aug 2007 08:57:33 -0700
Local: Wed, Aug 8 2007 11:57 am
Subject: Cache Hit Ratio from system views
We have acquired a software package that sends alerts based on defined
thresholds and/or events.  We are working on a simple alert like when
the cache hit ratio falls below a given threshold.  The package came
with a query that uses the V$BUFFER_POOL_STATISTICS view.  We have
typically used a query based on the V$SYSSTAT view.  We left the query
in place that came with the product, but it reports low cache hit
ratios pretty frequently whereas putting another alert in place that
uses V$SYSSTAT does not.

We only have one pool -- DEFAULT.  So we would expect the values to be
at least close, if not the same.  They are usually the same, but
several times in the course of a day they are VERY different.

In addition to be different enough to trigger the alert, the values in
V$BUFFER_POOL_STATISTICS are sometimes a negative value.  What's up
with that?

Can anyone explain to me why V$BUFFER_POOL_STATISTICS sometimes has
negative values or has very different values from V$SYSSTAT?  We'd
like to know if we really have an issue with the size of our cache, or
one of those views isn't the right one to use.

Here are the queries being:

SELECT ROUND(((SUM(cur.value) + SUM(con.value) - SUM(phy.value)) /
(SUM(cur.value) + SUM(con.value))) * 100, 2) AS
CLUSTER_CACHE_HIT_RATIO
FROM v$sysstat cur, gv$sysstat con, gv$sysstat phy
WHERE cur.name = 'db block gets'
AND con.name = 'consistent gets'
AND phy.name = 'physical reads'

SELECT DECODE(NAME, 'DEFAULT', DECODE(block_size, 2048, 'CACHE_2K',
4096, 'CACHE_4K', 8192, 'CACHE_8K', 16384, 'CACHE_16K', 'CACHE_32K'),
NAME) NAME ,  PHYSICAL_READS,  DB_BLOCK_GETS,  CONSISTENT_GETS,
    ( 1 - ((DECODE (PHYSICAL_READS, 0, 1, PHYSICAL_READS)) /
DECODE((DB_BLOCK_GETS + CONSISTENT_GETS),0, DECODE(PHYSICAL_READS, 0,
1, PHYSICAL_READS) ,(DB_BLOCK_GETS + CONSISTENT_GETS)))) * 100 AS
BUFFER_RATIO
FROM V$BUFFER_POOL_STATISTICS

Any assistance in helping us make sense of this is greatly
appreciated.

Teresa Masino


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
fitzjarrell@cox.net  
View profile  
 More options Aug 8 2007, 12:22 pm
Newsgroups: comp.databases.oracle.server
From: "fitzjarr...@cox.net" <fitzjarr...@cox.net>
Date: Wed, 08 Aug 2007 09:22:33 -0700
Local: Wed, Aug 8 2007 12:22 pm
Subject: Re: Cache Hit Ratio from system views
On Aug 8, 10:57 am, Teresa Masino <teresa.mas...@peninsula.org> wrote:

Which release of Oracle is this?

David Fitzjarrell


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Teresa Masino  
View profile  
 More options Aug 8 2007, 12:30 pm
Newsgroups: comp.databases.oracle.server
From: Teresa Masino <teresa.mas...@peninsula.org>
Date: Wed, 08 Aug 2007 09:30:19 -0700
Local: Wed, Aug 8 2007 12:30 pm
Subject: Re: Cache Hit Ratio from system views
On Aug 8, 12:22 pm, "fitzjarr...@cox.net" <fitzjarr...@cox.net> wrote:

duh, sorry.  We're running 10g.  Specifically:

Oracle Database 10g Enterprise Edition Release 10.1.0.5.0 on one
server and Oracle Database 10g Enterprise Edition Release 10.2.0.1.0
on another.

Teresa


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
fitzjarrell@cox.net  
View profile  
 More options Aug 8 2007, 12:53 pm
Newsgroups: comp.databases.oracle.server
From: "fitzjarr...@cox.net" <fitzjarr...@cox.net>
Date: Wed, 08 Aug 2007 09:53:49 -0700
Local: Wed, Aug 8 2007 12:53 pm
Subject: Re: Cache Hit Ratio from system views
On Aug 8, 11:30 am, Teresa Masino <teresa.mas...@peninsula.org> wrote:

Does this negative output occur on both releases?  It appears to work
fine on my 10.2.0.2 database.

David Fitzjarrell


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Teresa Masino  
View profile  
 More options Aug 8 2007, 1:36 pm
Newsgroups: comp.databases.oracle.server
From: Teresa Masino <teresa.mas...@peninsula.org>
Date: Wed, 08 Aug 2007 10:36:00 -0700
Subject: Re: Cache Hit Ratio from system views
On Aug 8, 12:53 pm, "fitzjarr...@cox.net" <fitzjarr...@cox.net> wrote:

Most of the time the queries return expected results for us too.  If I
run the queries in a loop that sleeps for 30 seconds or so and let it
go for a while, they eventually report different results.  It can take
10 minutes to see a discrepancy, it can take over an hour.  But at
some point, they do report different values.  Which leads us to wonder
which one we should pay attention to.  One of them tells us things are
fine and the other says they aren't.  And then there's the wild part
where the BUFFER_POOL_STATISTICS view has negative values.  That part
alone makes me question the validity of those values, but I thought
I'd check here to see if anyone knows for sure.

Thanks
Teresa


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
fitzjarrell@cox.net  
View profile  
 More options Aug 8 2007, 2:21 pm
Newsgroups: comp.databases.oracle.server
From: "fitzjarr...@cox.net" <fitzjarr...@cox.net>
Date: Wed, 08 Aug 2007 11:21:14 -0700
Local: Wed, Aug 8 2007 2:21 pm
Subject: Re: Cache Hit Ratio from system views
On Aug 8, 12:36 pm, Teresa Masino <teresa.mas...@peninsula.org> wrote:

Metalink reports the view was buggy up until 9.2.0.2, however it may
be a platform-specific issue.  On which O/S are you running Oracle?

David Fitzjarrell


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
DA Morgan  
View profile  
 More options Aug 8 2007, 2:31 pm
Newsgroups: comp.databases.oracle.server
From: DA Morgan <damor...@psoug.org>
Date: Wed, 08 Aug 2007 11:31:12 -0700
Local: Wed, Aug 8 2007 2:31 pm
Subject: Re: Cache Hit Ratio from system views

Teresa Masino wrote:
> We have acquired a software package that sends alerts based on defined
> thresholds and/or events.  We are working on a simple alert like when
> the cache hit ratio falls below a given threshold.

Because you wanted to hurt yourself and there weren't any brick in the
office you could drop on your toes? <g>

Here ...
http://www.oracledba.co.uk/tips/choose.htm
have any hit ratio you want any time you want.

Hit ratio's are meaningless.
--
Daniel A. Morgan
University of Washington
damor...@x.washington.edu (replace x with u to respond)
Puget Sound Oracle Users Group
www.psoug.org


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Teresa Masino  
View profile  
 More options Aug 8 2007, 2:32 pm
Newsgroups: comp.databases.oracle.server
From: Teresa Masino <teresa.mas...@peninsula.org>
Date: Wed, 08 Aug 2007 11:32:29 -0700
Local: Wed, Aug 8 2007 2:32 pm
Subject: Re: Cache Hit Ratio from system views
On Aug 8, 2:21 pm, "fitzjarr...@cox.net" <fitzjarr...@cox.net> wrote:

It's the server running 10.1.0.5.0  where we see the differences and
that's on Linux.  I saw some old postings saying things like that too
and wondered.  Afterall, we are counting on somebody somewhere writing
code to populate that data.    FYI, we also opened a ticket with
Oracle, so if I get an answer from them, I'll let you know.  But that
case has been open for a couple of weeks now, so I'm not very
optimistic.

Thanks
Teresa


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Teresa Masino  
View profile  
 More options Aug 8 2007, 3:02 pm
Newsgroups: comp.databases.oracle.server
From: Teresa Masino <teresa.mas...@peninsula.org>
Date: Wed, 08 Aug 2007 12:02:46 -0700
Local: Wed, Aug 8 2007 3:02 pm
Subject: Re: Cache Hit Ratio from system views
On Aug 8, 2:31 pm, DA Morgan <damor...@psoug.org> wrote:

> Teresa Masino wrote:
> > We have acquired a software package that sends alerts based on defined
> > thresholds and/or events.  We are working on a simple alert like when
> > the cache hit ratio falls below a given threshold.

> Because you wanted to hurt yourself and there weren't any brick in the
> office you could drop on your toes? <g>

:-)  yea, basically

> Here ...http://www.oracledba.co.uk/tips/choose.htm
> have any hit ratio you want any time you want.

> Hit ratio's are meaningless.

Alone, yea, but they can sometimes be an indicator that an instance
needs attention.  I wouldn't change anything based on just this, but
it would tell us to maybe take a closer look and run AWR or
statspack.  For us, this was supposed to be an easy thing to test
setting up alerts -- at least we thought it was.  Then this boondoggle
began.  Then I got curious, which is just another way of saying I
started looking for a brick.  :-)

Thanks
Teresa


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
sybra...@hccnet.nl  
View profile  
 More options Aug 8 2007, 3:38 pm
Newsgroups: comp.databases.oracle.server
From: sybra...@hccnet.nl
Date: Wed, 08 Aug 2007 21:38:00 +0200
Subject: Re: Cache Hit Ratio from system views
On Wed, 08 Aug 2007 12:02:46 -0700, Teresa Masino

<teresa.mas...@peninsula.org> wrote:

>Alone, yea, but they can sometimes be an indicator that an instance
>needs attention.

Do you really think so? Yesterday I had a customer spouting flames
because of a RAC database coming down to a crawl due to buffer busy
waits in  conjunction with both instances updating the same table over
and over again.
Nothing to be seen from the BCHR.

But then of course BCHR is a MIPS (Meaningless Indicator of the
Performance of the System).
Only good old Don Burleson makes people erroneously believe they can
tune their database by throwing memory at the problem to crank up the
BCHR.
Savy professionals (a favorite phrase of Don) know better.

--
Sybrand Bakker
Senior Oracle DBA


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
fitzjarrell@cox.net  
View profile  
 More options Aug 8 2007, 3:53 pm
Newsgroups: comp.databases.oracle.server
From: "fitzjarr...@cox.net" <fitzjarr...@cox.net>
Date: Wed, 08 Aug 2007 12:53:59 -0700
Local: Wed, Aug 8 2007 3:53 pm
Subject: Re: Cache Hit Ratio from system views
On Aug 8, 1:32 pm, Teresa Masino <teresa.mas...@peninsula.org> wrote:

10.1.0.x was fairly 'buggy' to begin with.  And depending upon which
'flavor' of Linux this is it could be platform-specific, as I said
earlier.

There's not much more I can tell you.  Well, except that I hope your
brick is fairly soft.  :)

David Fitzjarrell


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Niall Litchfield  
View profile  
 More options Aug 8 2007, 4:11 pm
Newsgroups: comp.databases.oracle.server
From: Niall Litchfield <niall.litchfi...@dial.pipex.com>
Date: Wed, 08 Aug 2007 21:11:14 +0100
Local: Wed, Aug 8 2007 4:11 pm
Subject: Re: Cache Hit Ratio from system views

enough of you will recognise where I stand on ratios. Indeed I believe
that I presented on the effectiveness or in fact otherwise of the BCHR
on its own nearly 5 years ago.

I have some sympathy withe Teresa's sentiment above though. Imagine a
system that has had a truly horrible burleson concerned hopelessness
ratio of 75% since 2002. Today the BCHR is 25% (or indeed 98%). I
venture to suggest that it's a change worth determining the reasons for,
either way. Ratios don't mean anything much, abrupt changes in them
often do.

--
Niall Litchfield
Oracle DBA
http://www.orawin.info/services


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
DA Morgan  
View profile  
 More options Aug 8 2007, 4:14 pm
Newsgroups: comp.databases.oracle.server
From: DA Morgan <damor...@psoug.org>
Date: Wed, 08 Aug 2007 13:14:29 -0700
Local: Wed, Aug 8 2007 4:14 pm
Subject: Re: Cache Hit Ratio from system views

On the other hand monitoring things that matter would save you the
trouble of chasing after smoke in a house of mirrors.

There are real things that can be monitored. And if Theresa has the
license to use AWR as it seems she'd be far better served looking at
things that matter.
--
Daniel A. Morgan
University of Washington
damor...@x.washington.edu (replace x with u to respond)
Puget Sound Oracle Users Group
www.psoug.org


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Niall Litchfield  
View profile  
 More options Aug 8 2007, 4:51 pm
Newsgroups: comp.databases.oracle.server
From: Niall Litchfield <niall.litchfi...@gmail.com>
Date: Wed, 08 Aug 2007 20:51:15 -0000
Local: Wed, Aug 8 2007 4:51 pm
Subject: Re: Cache Hit Ratio from system views
On Aug 8, 9:14 pm, DA Morgan <damor...@psoug.org> wrote:

Indeed. And since EM will do alerts based on user defined metrics,
it's possible the whole thing is moot.

Niall


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
DA Morgan  
View profile  
 More options Aug 9 2007, 11:31 am
Newsgroups: comp.databases.oracle.server
From: DA Morgan <damor...@psoug.org>
Date: Thu, 09 Aug 2007 08:31:52 -0700
Local: Thurs, Aug 9 2007 11:31 am
Subject: Re: Cache Hit Ratio from system views

Nothing prevents you from driving your car into a telephone pole.
Smart people stay between the lines.
--
Daniel A. Morgan
University of Washington
damor...@x.washington.edu (replace x with u to respond)
Puget Sound Oracle Users Group
www.psoug.org

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Frank van Bortel  
View profile  
 More options Aug 9 2007, 2:32 pm
Newsgroups: comp.databases.oracle.server
From: Frank van Bortel <frank.van.bor...@gmail.com>
Date: Thu, 09 Aug 2007 20:32:43 +0200
Local: Thurs, Aug 9 2007 2:32 pm
Subject: Re: Cache Hit Ratio from system views
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

DA Morgan wrote:

> Nothing prevents you from driving your car into a telephone pole.
> Smart people stay between the lines.

Lines - what lines; telephone lines?
- --
Regards,
Frank van Bortel

Top-posting is one way to shut me up...
Blind woman forced off the road; license expired:
http://www.blikopnieuws.nl/bericht/55525
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (MingW32)

iD8DBQFGu13LLw8L4IAs830RAiuHAJ4pzy/jexVdvegtjDYT2fjQBfXQXQCcDwE1
E2EcwbTlWxUcpO1cvl+8JwQ=
=aDMK
-----END PGP SIGNATURE-----


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bob Jones  
View profile  
 More options Aug 9 2007, 9:59 pm
Newsgroups: comp.databases.oracle.server
From: "Bob Jones" <em...@me.not>
Date: Fri, 10 Aug 2007 01:59:52 GMT
Local: Thurs, Aug 9 2007 9:59 pm
Subject: Re: Cache Hit Ratio from system views

>>Alone, yea, but they can sometimes be an indicator that an instance
>>needs attention.
> Do you really think so? Yesterday I had a customer spouting flames
> because of a RAC database coming down to a crawl due to buffer busy
> waits in  conjunction with both instances updating the same table over
> and over again.
> Nothing to be seen from the BCHR.

> But then of course BCHR is a MIPS (Meaningless Indicator of the
> Performance of the System).
> Savy professionals (a favorite phrase of Don) know better.

That is a common mistake of "savy professionals" - overlooking the basics
and thinking they know better.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
sybra...@hccnet.nl  
View profile  
 More options Aug 10 2007, 1:22 am
Newsgroups: comp.databases.oracle.server
From: sybra...@hccnet.nl
Date: Fri, 10 Aug 2007 07:22:15 +0200
Local: Fri, Aug 10 2007 1:22 am
Subject: Re: Cache Hit Ratio from system views

Assuming you are such a 'savy professional' 'Mr' Jones, why didn't you
notice throwing memory at the problem doesn't help?
On another note: If you think *you* know better, why don't you
contribute a *working* example of the Burleson strategy?
You have a track record of lurking and only chiming in when you can
flame someone with the drivel like you posted above.
I recall your flame wars with Daniel Morgan, which only served to
establish *you* are NOT a 'savy professional' but just some *arrogant
idiot* (of which we have already way too many here).

--
Sybrand Bakker
Senior Oracle DBA


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bob Jones  
View profile  
 More options Aug 10 2007, 10:03 pm
Newsgroups: comp.databases.oracle.server
From: "Bob Jones" <em...@me.not>
Date: Sat, 11 Aug 2007 02:03:59 GMT
Local: Fri, Aug 10 2007 10:03 pm
Subject: Re: Cache Hit Ratio from system views

It can help sometimes. But what does that have to do with anything?

> On another note: If you think *you* know better, why don't you
> contribute a *working* example of the Burleson strategy?

Did I say anything about his strategy? Yet another assumption.

> You have a track record of lurking and only chiming in when you can
> flame someone with the drivel like you posted above.

I clearly disagree with the statement that BHCR is meaningless. This has
been discussed several times before. I won't waste any more energy.

> I recall your flame wars with Daniel Morgan, which only served to
> establish *you* are NOT a 'savy professional' but just some *arrogant
> idiot* (of which we have already way too many here).

What did we discuss? Was I wrong? I have no interest in becoming what you
call a "savy professional", because that really amount to exactly, an
arrogant idiot.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
DA Morgan  
View profile  
 More options Aug 11 2007, 1:13 am
Newsgroups: comp.databases.oracle.server
From: DA Morgan <damor...@psoug.org>
Date: Fri, 10 Aug 2007 22:13:17 -0700
Local: Sat, Aug 11 2007 1:13 am
Subject: Re: Cache Hit Ratio from system views

Bob Jones wrote:
> I clearly disagree with the statement that BHCR is meaningless. This has
> been discussed several times before. I won't waste any more energy.

Disagree all you wish Connor proved this clearly and decisively many
years ago. And it should come as no surprise that Connor is one of the
most capable, and respected, Oracle technologists on the planet for a
reason.

>> I recall your flame wars with Daniel Morgan, which only served to
>> establish *you* are NOT a 'savy professional' but just some *arrogant
>> idiot* (of which we have already way too many here).

> What did we discuss? Was I wrong? I have no interest in becoming what you
> call a "savy professional", because that really amount to exactly, an
> arrogant idiot.

Beats heck out of being one an not being a savvy professional. <g>

If you wish to be taken seriously, and you think Connor's proof invalid,
by all means demonstrate your case with a replicable test environment
and metrics.

If you can produce it then you don't have a case and should buy lots
of books from Rampant.
--
Daniel A. Morgan
University of Washington
damor...@x.washington.edu (replace x with u to respond)
Puget Sound Oracle Users Group
www.psoug.org


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bob Jones  
View profile  
 More options Aug 15 2007, 11:42 pm
Newsgroups: comp.databases.oracle.server
From: "Bob Jones" <em...@me.not>
Date: Thu, 16 Aug 2007 03:42:16 GMT
Local: Wed, Aug 15 2007 11:42 pm
Subject: Re: Cache Hit Ratio from system views

>> I clearly disagree with the statement that BHCR is meaningless. This has
>> been discussed several times before. I won't waste any more energy.

> Disagree all you wish Connor proved this clearly and decisively many
> years ago. And it should come as no surprise that Connor is one of the
> most capable, and respected, Oracle technologists on the planet for a
> reason.

I do not know who this Connor guy is. Did he really say BHCR is meaningless?
I would love to see his proof.

>>> I recall your flame wars with Daniel Morgan, which only served to
>>> establish *you* are NOT a 'savy professional' but just some *arrogant
>>> idiot* (of which we have already way too many here).

>> What did we discuss? Was I wrong? I have no interest in becoming what you
>> call a "savy professional", because that really amount to exactly, an
>> arrogant idiot.

> Beats heck out of being one an not being a savvy professional. <g>

Not really given the meaning of "savvy professional" here.

> If you wish to be taken seriously, and you think Connor's proof invalid,
> by all means demonstrate your case with a replicable test environment
> and metrics.

> If you can produce it then you don't have a case and should buy lots
> of books from Rampant.

I think the burden is on you to prove BHCR is meaningless. Maybe the issue
here is reading too many books and articles.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
sybra...@hccnet.nl  
View profile  
 More options Aug 16 2007, 1:50 am
Newsgroups: comp.databases.oracle.server
From: sybra...@hccnet.nl
Date: Thu, 16 Aug 2007 07:50:26 +0200
Local: Thurs, Aug 16 2007 1:50 am
Subject: Re: Cache Hit Ratio from system views

On Thu, 16 Aug 2007 03:42:16 GMT, "Bob Jones" <em...@me.not> wrote:
>>> I clearly disagree with the statement that BHCR is meaningless. This has
>>> been discussed several times before. I won't waste any more energy.

>> Disagree all you wish Connor proved this clearly and decisively many
>> years ago. And it should come as no surprise that Connor is one of the
>> most capable, and respected, Oracle technologists on the planet for a
>> reason.

>I do not know who this Connor guy is. Did he really say BHCR is meaningless?
>I would love to see his proof.

This 'Connor guy' (a label intended as disrespectful) is Connor Mc
Donald, a member of the OakTable Network. His site is
http://www.oracledba.co.uk. The proof is on this site including a
demonstration.

>I think the burden is on you to prove BHCR is meaningless. Maybe the issue
>here is reading too many books and articles.

I think the burden is on you to prove it is meaningfull and to
contradict the figures provided by Connor McDonald.
I think the issue here is you have read to many fairy tales composed
by Donald K Burleson, Mike R Ault, and other Rampant authours.
May be you get paid by Burleson to bash 'savy professionals'.
But most likely you are someone who like Burleson's 'savy
proefessionals' just doesn't know what he is talking about.
I would love to see your apologize here once you have read the article
on www.oracledba.co.uk, but I'm not holding my breath: you have
established yourself here as an arrogant incompetent troll.

--
Sybrand Bakker
Senior Oracle DBA


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
DA Morgan  
View profile  
 More options Aug 16 2007, 3:33 pm
Newsgroups: comp.databases.oracle.server
From: DA Morgan <damor...@psoug.org>
Date: Thu, 16 Aug 2007 12:33:22 -0700
Local: Thurs, Aug 16 2007 3:33 pm
Subject: Re: Cache Hit Ratio from system views

Bob Jones wrote:
>>> I clearly disagree with the statement that BHCR is meaningless. This has
>>> been discussed several times before. I won't waste any more energy.
>> Disagree all you wish Connor proved this clearly and decisively many
>> years ago. And it should come as no surprise that Connor is one of the
>> most capable, and respected, Oracle technologists on the planet for a
>> reason.

> I do not know who this Connor guy is. Did he really say BHCR is meaningless?
> I would love to see his proof.

This Connor guy?

You mean THIS Connor guy don'you?
http://www.oracledba.co.uk/index.html
http://www.oaktable.net/pageServer.jsp?body=members.jsp

Next are we going to see "This Mogens guy" or "Who the heck is this
Kyte guy? BHCR is meaningless. Totally meaningless. The only reason
anyone pays any attention to it is that it has been promoted ad nauseum
by the self-anointed to the clueless.
--
Daniel A. Morgan
University of Washington
damor...@x.washington.edu (replace x with u to respond)
Puget Sound Oracle Users Group
www.psoug.org


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bob Jones  
View profile  
 More options Aug 16 2007, 9:37 pm
Newsgroups: comp.databases.oracle.server
From: "Bob Jones" <em...@me.not>
Date: Thu, 16 Aug 2007 20:37:27 -0500
Local: Thurs, Aug 16 2007 9:37 pm
Subject: Re: Cache Hit Ratio from system views

<sybra...@hccnet.nl> wrote in message

news:30p7c39h7e4nj7t1b9bnl5o0589u1upm8l@4ax.com...

Do I really need to respond to this moron?

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bob Jones  
View profile  
 More options Aug 16 2007, 9:46 pm
Newsgroups: comp.databases.oracle.server
From: "Bob Jones" <em...@me.not>
Date: Thu, 16 Aug 2007 20:46:32 -0500
Local: Thurs, Aug 16 2007 9:46 pm
Subject: Re: Cache Hit Ratio from system views

"DA Morgan" <damor...@psoug.org> wrote in message

news:1187292802.754728@bubbleator.drizzle.com...

Well, all you have to do is to give one reason? Not people's names or a
bunch of links.

Why is BHCR meaningless? The answer should be short and simple. I want to
hear your opinion.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 1 - 25 of 161   Newer >
« Back to Discussions « Newer topic     Older topic »