Search notes:

Oracle: DBA_CATALOG

dba_catalog has the names of
Select the number of objects for all four object types:
select
   count(*),
   table_type
from
   dba_catalog
group by
   table_type;
Select the names of the current user's tables and views:
select
   table_name
from
   user_catalog
where
   table_type in ('TABLE', 'VIEW')
order by
   table_name;  
dba_catalog comes in all four varinats dba_catalog, all_catalog, user_catalog and cdb_catalog.

See also

cat is a special synonym for user_catalog.
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...', 1758194375, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/data-dictionary/catalog(67): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78