Search notes:

Oracle: DBA_EVALUATION_CONTEXT_TABLES

select
   ctx.evaluation_context_owner,
   ctx.evaluation_context_name,
   ctt.table_name,
   ctt.table_alias,
   case when tab.table_name is not null then 'exists' end     tab_exists,
   regexp_replace(ctt.table_name, '^.*?"(.*)".*$', '\1')      table_owner,
   regexp_replace(ctt.table_name,  '^.*"(.*)".*$', '\1')      table_name
   
from
   dba_evaluation_contexts       ctx                                                                                 join
   dba_evaluation_context_tables ctt on ctx.evaluation_context_owner  = ctt.evaluation_context_owner      and
                                        ctx.evaluation_context_name   = ctt.evaluation_context_name             left join
   dba_tables                    tab on '"' || tab.owner || '"."' || tab.table_name || '"' = ctt.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...', 1759568104, '216.73.216.149', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/data-dictionary/evaluation/context/tables(48): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78