Search notes:

Oracle: DBA_TABLESPACES

dba_tablespaces lists characteristics of all tablespaces.
This view comes in the variants user_tablespaces, dba_tablespaces and cdb_tablespaces.
select
   tbs.contents,                                                             -- PERMANENT, UNDO, TEMPORARY or LOST WRITE PROTECTION.
   tbs.tablespace_name,
   tbs.status,
   tbs.extent_management                                    ext_mgmt,
   tbs.allocation_type                                      ext_alloc_type,  -- How the size of new extents is determined SYSTEM: Oracle chooses size, UNIFORM: same size for all segments.
   tbs.segment_space_management                             seg_mgmt,        -- AUTO or MANUAL
   round(tbs.max_size * tbs.block_size / 1024/1024/1024, 2) max_size_gb,
   tbs.force_logging,   
   tbs.encrypted,  
   tbs.min_extents,  
   tbs.initial_extent,
   tbs.logging,  
   tbs.bigfile,
   tbs.block_size / 1024 bls_kb,
   tbs.chunk_tablespace,
   tbs.compress_for,
   tbs.def_cellmemory,
   tbs.def_index_compression,
   tbs.def_inmemory,
   tbs.def_inmemory_compression,
   tbs.def_inmemory_distribute,
   tbs.def_inmemory_duplicate,
   tbs.def_inmemory_priority,
   tbs.def_inmemory_service,
   tbs.def_inmemory_service_name,
   tbs.def_tab_compression,
   tbs.index_compress_for,
   tbs.lost_write_protect,
   tbs.max_extents,
   tbs.min_extlen,
   tbs.next_extent,
   tbs.pct_increase,
   tbs.plugged_in,
   tbs.predicate_evaluation,
   tbs.retention,
   tbs.shared
from
   sys.dba_tablespaces tbs
order by
   tbs.contents,
   tbs.tablespace_name;

Columns related to extent allocation

Columns that are related to space management of tablespace are
Column name Values
extent_management Location of extent-allocation information DICTIONARY: In data dictionary , LOCAL in a bitmap structure within the tablespace itself.
allocation_type SYSTEM, UNIFORM, USER
segment_space_management Where free and used segment information is stored MANUAL: in free lists, AUTO: in a bitmap structure

See also

v$tablespace
data dictionary
tablespace

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...', 1741045711, '18.189.180.234', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/data-dictionary/tablespaces/index(102): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78