Search notes:

Oracle: DBA_EXTENTS

dba_extents shows information about extents in a tablespace.
It queries its information from x$ktfbue for locally managed tablespaces and from fet$ and uet$ for dictionary managed tablespaces.
select
  ext.owner,
  ext.segment_name,
  ext.segment_type,
  ext.partition_name,
  ext.tablespace_name,
  ext.extent_id,
  ext.block_id,
  ext.blocks,
  ext.bytes / 1024   kb,
  ext.file_id,
  ext.relative_fno
from
  dba_extents ext;

See also

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