Search notes:

Oracle: DBA_LOBS

DBA_LOBS describes LOBs stored in tables.
create table tq84_lob_index (
   id  integer,
   txt clob
);

column index_name   format a25
column index_type   format a10
column segment_name format a25

select
   ind.index_name,
   ind.index_type,
   lob.segment_name
from
   user_indexes  ind                                              join
   user_lobs     lob on ind.index_name   = lob.index_name
where
   ind.table_name = 'TQ84_LOB_INDEX' ;                                
--
-- INDEX_NAME                INDEX_TYPE SEGMENT_NAME            
-- ------------------------- ---------- -------------------------
-- SYS_IL0003416770C00002$$  LOB        SYS_LOB0003416770C00002$$  

drop table tq84_lob_index;

Select interesting columns

select
-- lob.table_name,
   lob.column_name,
   lob.in_row,
   lob.deduplication,
   lob.format,
   lob.chunk,
   lob.segment_name,
   lob.tablespace_name,
   lob.index_name,
   lob.pctversion,
   lob.retention,
   lob.freepools,
   lob.cache,
   lob.logging,
   lob.encrypt,
   lob.compression,
   lob.partitioned,
   lob.securefile,
   lob.segment_created,
   lob.retention_type,
   lob.retention_value
from
   user_lobs lob
where
   lob.table_name = '…';

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