Search notes:

SQL Server - sys.dm_os_buffer_descriptors

sys.dm_os_buffer_descriptors reveals the content of the buffer cache (aka buffer pool).
select 
   db_name(buf.database_id) db,
   buf.file_id,
   buf.page_id,
   buf.page_level,
-- alo.type                  allocation_type_id,
   alo.type_desc             allocation_type,
   buf.page_type,
   alo.data_space_id,
   alo.total_pages,
   alo.used_pages,
   alo.data_pages,
-- buf.allocation_unit_id,
   buf.row_count,
  buf.free_space_in_bytes,
   buf.is_modified,
   buf.numa_node,
   buf.read_microsec,
   buf.is_in_bpool_extension,
   alo.container_id
from
   sys.dm_os_buffer_descriptors  buf     join
   sys.allocation_units          alo on buf.allocation_unit_id = alo.allocation_unit_id

page types

select
-- count(*),
   page_type
from
   sys.dm_os_buffer_descriptors
group by
   page_type
order by
   page_type
--
-- DATA_PAGE
-- IAM_PAGE
-- INDEX_PAGE
-- TEXT_MIX_PAGE

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...', 1759398030, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/SQL-Server/administration/schemas/sys/objects/views/dm/os/buffer/descriptors(73): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78