Search notes:

Oracle: DBMS_XPLAN.GET_CURSOR_ROWS

Find an arbitrary pair of sql id and child number:
select sql_id, child_number from v$sql;
Then use the chosen pair to get the excution plan's records:
select * from table(
   dbms_xplan.get_cursor_rows('ayarmuv5us976', 0, 'ADVANCED')
);

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...', 1740470613, '18.225.55.104', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/packages/dbms/xplan/api/get/cursor_rows(39): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78