Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Separating data, index objects
Joel Garry wrote:
>>Actually there is no such thing as "all blocks contiguous." As amazing >>as it may be many operating systems won't lay down a single file on a >>clean drive that way.
If RAW I would agree with you. But otherwise Oracle isn't doing the reading.
>>We could talk about RAW but that is quite a different matter. And even >>on your single user database ... there will be a substantial amount of >>recursive SQL. In Oracle you are never alone.
Didn't say there was. But Oracle will be running it in the background and issuing reads and writes that may very well get in the middle of what you, the end user, perceive to be a single read request.
You go to Oracle and say SELECT col1, col6 FROM t;
And whats the first thing that happens?
select /*+ rule */ bucket_cnt, row_cnt, cache_cnt, null_cnt, timestamp#, sample_size, minimum, maximum, distcnt, lowval, hival, density, col#, spare1, spare2, avgcln from hist_head$ where obj#=:1 and intcol#=:2;
And it has two indexes that I can guarantee you are in the SYSTEM tablespace.
In Oracle you are never alone. Even on a single user system.
-- Daniel A. Morgan http://www.psoug.org damorgan_at_x.washington.edu (replace x with u to respond)Received on Fri Jul 08 2005 - 03:07:33 CDT
![]() |
![]() |