Search notes:

Oracle logical database structure: Segment

A segment is the logical container for
A segment belongs to exactly one tablespace and consists of of one or more extents.
The data of a segment is stored in at least one data file, but can easily span multiple data files.
In the case of a hybrid partitioned table however, some data is stored via (ordinary) segments in data files and other data is stored in external data sources.
In the data dictionary, storage allocation for segments is recorded in dba_segments.
Types of segments:
A segment in manual segment space management (MSSM) maintains a free list which keeps track of free blocks below a segment's high water mark.
Some statistical numbers about segment usage is found in v$segment_statistics.

See also

segment header
dbms_space returns space related information of segments and can be used to analyze segment growth and space requirements.
logical structures
Oracle SQL: Physical attributes and storage clause
dba_hist_seg_stat, dba_hist_seg_stat_obj

Index