Search notes:

Oracle: X$KSMHP

No full table scan

Querying x$ksmhp with a full table scan (like for example select * from x$ksmhp) does not return a record.
In order to find records, it must be queried with a valid heap descriptor (address) on the column ksmchds.
Valid heap descriptors can be found (among others?) in x$kglcursor:
select kglobhd6 from x$kglcursor;
…
00007FFB3D4DDAE0
…
With such a heap descriptor, the corresponding records can be queried like so:
select
   addr,
   ksmchcom   chunk_allocation_comment,
   ksmchptr   chunk_pointer,
   ksmchsiz   chunk_size,
   ksmchcls   allocation_class,
   ksmchtyp   chunk_type,
   ksmchpar,
   ksmchown,
   indx,
   inst_id,
   con_id
from
   x$ksmhp
where
   ksmchds  = hextoraw('00007FFB3D4DDAE0');

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...', 1758206134, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/architecture/instance/fixed-tables/k/s/m/hp/index(63): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78