Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

next_extent column of dba_segments table

636309Feb 9 2013 — edited Feb 10 2013
Hello,
Using Oracle 11g XE. According to the Oracle documentation, the NEXT_EXTENT column of the dba_segments table is defined as
Size in bytes of the next extent to be allocated to the segment 
However, the number of bytes in my table is inconsistent with the documentation's definition. You can see below that the bytes column shows twice the number of the initial_extents column, not the size of the initial_extent column plus the size of the next_extent column as expected. Does anyone know why?
SQL> select bytes, blocks, extents, initial_extent, next_extent from dba_segments where segment_name = 'ZIPCODE';

     BYTES     BLOCKS    EXTENTS INITIAL_EXTENT NEXT_EXTENT
---------- ---------- ---------- -------------- -----------
    131072         16          2          65536     1048576

SQL>
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 10 2013
Added on Feb 9 2013
3 comments
829 views