Search notes:

Oracle: V$DB_OBJECT_CACHE

v$db_object_cache displays objects that are cached (pinned) in the library cache.
select
   cac.type,
   cac.namespace,
   cac.addr,  
   cac.sharable_mem,  
   cac.owner,
   cac.status,  
   cac.name,
   cac.loads,
   cac.executions,
   cac.locks,
   cac.pins,
   cac.kept,
   cac.child_latch,
   cac.invalidations,
   cac.hash_value,
   cac.lock_mode,
   cac.pin_mode,
   cac.timestamp,
   cac.previous_timestamp,
   cac.locked_total,
   cac.pinned_total,
   cac.property,
   cac.full_hash_value,
   cac.db_link,  
   cac.con_id,
   cac.con_name,
   cac.edition
from
   v$db_object_cache cac
order by
   cac.sharable_mem desc;
select
   count(*)  cnt,
   sum(sharable_mem) mem,
   type,
   namespace
from
   v$db_object_cache
group by
   type,
   namespace
order by
   namespace,
   type,
   cnt desc;

See also

Examining the contents of the Shared Pool
dbms_shared_pool.sizes
Oracle Dynamic Performance Views

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...', 1741107656, '18.221.140.197', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/dynamic-performance-views/db/object_cache/index(92): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78