Search notes:

Oracle: DBA_SEGMENTS

dba_segments comes in the three variants user_segments, dba_segments and cdb_segments.
dba_segments records storaged. allocated for segments
List a user's segment in descending order of their sizes:
select
   seg.tablespace_name,
   seg.segment_name,
   seg.segment_type,
   round(seg.bytes    / 1024/1024, 1) mb,
   round(seg.max_size / 1024/1024, 1) max_size_mb, 
   seg.extents,
   seg.partition_name,
   seg.segment_subtype                              -- ASSM, MSSM, SECUREFILE or null, compare with segment_space_management in dba_tablespaces
from
   dba_segments seg
where
   seg.owner = 'RENE'
order by
   seg.bytes           desc,
   seg.tablespace_name
;

TODO

user_segments does not have the columns header_file and header_block. These two numbers identify the data block of the segment header.
There is a segment with segment_type = 'SYSTEM STATISTICS and segment_name = 'HEATMAP'.

See also

dba_segments is used in this query to calculate available and free space in tablespaces.
data dictionary

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1741031060, '3.146.176.19', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/data-dictionary/segments/index(70): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78