Search notes:

Oracle: Data dictionary base tables

The base tables are owned by sys.
The base tables are stored in the SYSTEM tablespace.
The content of the base tables should be read using the data dictionary views.
select
   o.obj#,
   o.dataobj#,
-- o.owner#,
   u.name     owner,
   u.type#    owner_type,
   o.name,
   o.namespace,
   o.subname,
   decode(o.type#,
      0, 'next object',          -- Special case for object with obj# = 1
      1, 'index'  ,
      2, 'table'  ,
      3, 'cluster',              -- ?
          to_char(o.type#)
         )                       type,
   o.ctime, o.mtime, o.stime,
   o.status,
   o.remoteowner,
   o.linkname,
   o.flags,
   o.oid$,
   o.spare1, o.spare2, o.spare3, o.spare4, o.spare5, o.spare6, o.spare7, o.spare8, o.spare9, o.spare10, o.spare11, o.spare12, o.spare13, o.spare14,
   o.signature,
   o.dflcollid,
   o.creappid,
   o.creverid,
   o.crepatchid,
   o.modappid,
   o.modverid,
   o.modpatchid
from
   obj$      o  left join
   user$     u on o.owner# = u.user#
order by
   o.obj#
;

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