Search notes:

Oracle: Finding (undocumented) hints in the shared SQL area

The following SQL statement tries to find SQL statements with hints in the shared SQL area. When I wrote this statement, I hoped I'd find hints that are undocumented.
select
   distinct
   regexp_substr(lower(listagg(t.sql_text, '') within group (order by t.piece)), '/\* *\+[^*]*')
from
   v$sqltext_with_newlines t
where
   piece < 20
group by
   sql_id
order by
   1;

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...', 1758199135, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/SQL/hints/find-in-shared-SQL-area(42): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78