Search notes:

DBMS_SHARED_POOL.SIZES

dbms_shared_pool.sizes(N) shows objects that occupy more than N kb memory in the shared pool.
This procedure prints the values using dbms_output. Thus, when using the procedure in SQL*Plus, output must be enabled with set serveroutput on.
An educated guess is that sizes selects from v$db_object_cache and v$sqlarea.
set serveroutput on
begin
   sys.dbms_shared_pool.sizes(1000);
end;
/

See also

dbms_shared_pool

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