RE: db file scattered/sequential read wait
- From: "Roger Xu" <roger_xu@xxxxxxxxxxx>
- To: <oracle-l@xxxxxxxxxxxxx>
- Date: Wed, 16 Jun 2004 17:42:04 -0500
We are running SAP and there is a hourly background job which
runs SQL against dba_segmen and dba_extents. I believe the
program name is SAPLSDO0. Anyway, my question is: why it never
bring down our databases?
-----Original Message-----
From: Wolfgang Breitling [mailto:breitliw@xxxxxxxxxxxxx]
Sent: Wednesday, June 16, 2004 1:21 PM
To: oracle-l@xxxxxxxxxxxxx
Subject: RE: db file scattered/sequential read wait
Just a word of caution. You don't want to run this query every time you want to
find out the object for a db file read. That alone could bring your system to
its knees, especially if you have LMTs - and if not, why not? (those who still
manage Oracle 7 and lower systems are excused).
I run something like that in the wee hours of the morning when there is spare
capacity and load the response into a table indexed by file# and block#. This
way I don't go after the catalog tables and the response is immediate. Sure, I
risk missing the occasional block (hasn't happened yet) if the object went into
a new extent after I ran my report.
Quoting "Mark W. Farnham" <mwf@xxxxxxxx>:
> I think you want a minus one in the second term.
>
> Let's see, if block_id = 1 and you read 8 blocks, then 1...9, is *not* what
> you want, so yeah, (block_id+blocks-1)
> would tighten up that predicate.
>
> mwf
>
--
regards
Wolfgang Breitling,
Oracle 7,8,8i,9i OCP DBA; Oaktable member
Centrex Consulting Corporation
www.centrexcc.com
----------------------------------------------------------------
Please see the official ORACLE-L FAQ: http://www.orafaq.com
----------------------------------------------------------------
To unsubscribe send email to: oracle-l-request@xxxxxxxxxxxxx
put 'unsubscribe' in the subject line.
--
Archives are at http://www.freelists.org/archives/oracle-l/
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
-----------------------------------------------------------------
For technical support please email tech_support@xxxxxxxxxxx or you can
call (972)721-8257.
This email has been scanned for all viruses by the MessageLabs Email Security
System.
************************************************************************
This e-mail is intended solely for the person or entity to which it is
addressed and may contain confidential and/or privileged information. Any
review, dissemination, copying, printing or other use of this e-mail by persons
or entities other than the addressee is prohibited. If you have received this
e-mail in error, please contact the sender immediately and delete the material.
************************************************************************
This email has been scanned for all viruses by the MessageLabs Email Security
System. Any questions please call 972-721-8257 or email your request to
tech_support@xxxxxxxxxxxx
----------------------------------------------------------------
Please see the official ORACLE-L FAQ: http://www.orafaq.com
----------------------------------------------------------------
To unsubscribe send email to: oracle-l-request@xxxxxxxxxxxxx
put 'unsubscribe' in the subject line.
--
Archives are at http://www.freelists.org/archives/oracle-l/
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
-----------------------------------------------------------------
- Follow-Ups:
- RE: db file scattered/sequential read wait
- From: Wolfgang Breitling
Other related posts:
- » db file scattered/sequential read wait
- » Re: db file scattered/sequential read wait
- » RE: db file scattered/sequential read wait
- » RE: db file scattered/sequential read wait
- » RE: db file scattered/sequential read wait
- » Re: db file scattered/sequential read wait
- » RE: db file scattered/sequential read wait
- » RE: db file scattered/sequential read wait
- » RE: db file scattered/sequential read wait
- » RE: db file scattered/sequential read wait
- RE: db file scattered/sequential read wait
- From: Wolfgang Breitling