- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- db file sequential read
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-31-2004 08:03 PM
тАО08-31-2004 08:03 PM
db file sequential read
Thanks
Eric
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-31-2004 08:22 PM
тАО08-31-2004 08:22 PM
Re: db file sequential read
If this is a required query, you either need to add extra index(es) to you schema, or rewrite the query.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-31-2004 08:28 PM
тАО08-31-2004 08:28 PM
Re: db file sequential read
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-31-2004 09:09 PM
тАО08-31-2004 09:09 PM
Re: db file sequential read
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2004 01:43 AM
тАО09-01-2004 01:43 AM
Re: db file sequential read
db file sequential read is due to INDEXED reads and it is single block IO. It is not the result of a full scan.
Also, a sequential read is usually a single-block read, although it is possible to see sequential reads for more than one block.
hope this helps!
regards
Yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2004 12:52 PM
тАО09-01-2004 12:52 PM
Re: db file sequential read
Thanks for your reply in advance.
However, I am very confused whether it is full scan or not. Does any Oracle white paper mention this? Could you pls explain detail about 'sequential'? When that session execution, v$session_wait also showed P1, P2, and P3.
P1 = file#
P2 = block#
P3 = blocks
After checking this, it is a table.
Thanks
Eric
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2004 04:58 PM
тАО09-01-2004 04:58 PM
Re: db file sequential read
There are LOTs of writings in this subject.
CHeck Oracle sites, and hotsos, and ixora,...
For example.
http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:3230221064491
http://www.hotsos.com/dnloads/1/kevents/db_file_sequential_read.html
Cheers,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-03-2004 04:04 AM
тАО09-03-2004 04:04 AM
Re: db file sequential read
Check this documment.
E.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-03-2004 08:22 AM
тАО09-03-2004 08:22 AM
Re: db file sequential read
DB Sequential Read doesn't nessecarily mean that a FTS scan is being done, only that it is pulling multiple blocks from the database in a query. DB Scattered Read means that it is most likely using an index. I would recommend checking the SQL plan for the query that you see it on, and see what it is doing.
Thanks,
Brian