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'
> 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'
> On Aug 8, 10:57 am, Teresa Masino <teresa.mas...@peninsula.org> 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. 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.
> On Aug 8, 12:22 pm, "fitzjarr...@cox.net" <fitzjarr...@cox.net> wrote:
> > On Aug 8, 10:57 am, Teresa Masino <teresa.mas...@peninsula.org> 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. 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.
> > > Any assistance in helping us make sense of this is greatly > > > appreciated.
> > > Teresa Masino
> > Which release of Oracle is this?
> > David Fitzjarrell- Hide quoted text -
> > - Show quoted text -
> 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- Hide quoted text -
> - Show quoted text -
Does this negative output occur on both releases? It appears to work fine on my 10.2.0.2 database.
> On Aug 8, 11:30 am, Teresa Masino <teresa.mas...@peninsula.org> wrote:
> > On Aug 8, 12:22 pm, "fitzjarr...@cox.net" <fitzjarr...@cox.net> wrote:
> > > On Aug 8, 10:57 am, Teresa Masino <teresa.mas...@peninsula.org> 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. 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.
> > > > Any assistance in helping us make sense of this is greatly > > > > appreciated.
> > > > Teresa Masino
> > > Which release of Oracle is this?
> > > David Fitzjarrell- Hide quoted text -
> > > - Show quoted text -
> > 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- Hide quoted text -
> > - Show quoted text -
> Does this negative output occur on both releases? It appears to work > fine on my 10.2.0.2 database.
> David Fitzjarrell- Hide quoted text -
> - Show quoted text -
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.
> On Aug 8, 12:53 pm, "fitzjarr...@cox.net" <fitzjarr...@cox.net> wrote:
> > On Aug 8, 11:30 am, Teresa Masino <teresa.mas...@peninsula.org> wrote:
> > > On Aug 8, 12:22 pm, "fitzjarr...@cox.net" <fitzjarr...@cox.net> wrote:
> > > > On Aug 8, 10:57 am, Teresa Masino <teresa.mas...@peninsula.org> 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. 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.
> > > 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- Hide quoted text -
> > > - Show quoted text -
> > Does this negative output occur on both releases? It appears to work > > fine on my 10.2.0.2 database.
> > David Fitzjarrell- Hide quoted text -
> > - Show quoted text -
> 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- Hide quoted text -
> - Show quoted text -
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?
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>
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
> On Aug 8, 12:36 pm, Teresa Masino <teresa.mas...@peninsula.org> wrote:
> > On Aug 8, 12:53 pm, "fitzjarr...@cox.net" <fitzjarr...@cox.net> wrote:
> > > On Aug 8, 11:30 am, Teresa Masino <teresa.mas...@peninsula.org> wrote:
> > > > On Aug 8, 12:22 pm, "fitzjarr...@cox.net" <fitzjarr...@cox.net> wrote:
> > > > > On Aug 8, 10:57 am, Teresa Masino <teresa.mas...@peninsula.org> 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. 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.
> > > > 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- Hide quoted text -
> > > > - Show quoted text -
> > > Does this negative output occur on both releases? It appears to work > > > fine on my 10.2.0.2 database.
> > > David Fitzjarrell- Hide quoted text -
> > > - Show quoted text -
> > 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- Hide quoted text -
> > - Show quoted text -
> 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- Hide quoted text -
> - Show quoted text -
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.
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>
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. :-)
>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.
> On Aug 8, 2:21 pm, "fitzjarr...@cox.net" <fitzjarr...@cox.net> wrote:
> > On Aug 8, 12:36 pm, Teresa Masino <teresa.mas...@peninsula.org> wrote:
> > > On Aug 8, 12:53 pm, "fitzjarr...@cox.net" <fitzjarr...@cox.net> wrote:
> > > > On Aug 8, 11:30 am, Teresa Masino <teresa.mas...@peninsula.org> wrote:
> > > > > On Aug 8, 12:22 pm, "fitzjarr...@cox.net" <fitzjarr...@cox.net> wrote:
> > > > > > On Aug 8, 10:57 am, Teresa Masino <teresa.mas...@peninsula.org> 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. 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.
> > > > > 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- Hide quoted text -
> > > > > - Show quoted text -
> > > > Does this negative output occur on both releases? It appears to work > > > > fine on my 10.2.0.2 database.
> > > > David Fitzjarrell- Hide quoted text -
> > > > - Show quoted text -
> > > 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- Hide quoted text -
> > > - Show quoted text -
> > 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- Hide quoted text -
> > - Show quoted text -
> 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- Hide quoted text -
> - Show quoted text -
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. :)
sybra...@hccnet.nl wrote: > 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.
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 wrote: > sybra...@hccnet.nl wrote: >> 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.
> 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.
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
> >>> 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.
> > 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.
> 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 Groupwww.psoug.org- Hide quoted text -
> - Show quoted text -
Indeed. And since EM will do alerts based on user defined metrics, it's possible the whole thing is moot.
Niall Litchfield wrote: > On Aug 8, 9:14 pm, DA Morgan <damor...@psoug.org> wrote: >> Niall Litchfield wrote: >>> sybra...@hccnet.nl wrote: >>>> 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. >>> 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. >> 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 Groupwww.psoug.org- Hide quoted text -
>> - Show quoted text -
> Indeed. And since EM will do alerts based on user defined metrics, > it's possible the whole thing is moot.
> Niall
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
> 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)
>>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.
On Fri, 10 Aug 2007 01:59:52 GMT, "Bob Jones" <em...@me.not> 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). >> 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.
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).
>>>>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.
> Assuming you are such a 'savy professional' 'Mr' Jones, why didn't you > notice throwing memory at the problem doesn't help?
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.
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
>> 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.
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.
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.
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
> 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.
> 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.
> 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.
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.