Quote:
Originally posted by jrpm
Oracle tends to retrieve an extent at at time (if the OS buffer permits), so extent size vs system buffers is also a small factor.
Oracle *never* retrieves data from database in extents, only in single database blocks or DB_FILE_MULTIBLOCK_READ_COUNT number of blocks. So it is irrelevant if extent is small or large for that matter. If the segment is often read with full scan then extent size should be N*DB_FILE_MULTIBLOCK_READ_COUNT, but the actual size of the extents is irrelevant for the I/O efficiency.