Search notes:

Oracle: V$SGA_DYNAMIC_COMPONENTS

v$sga_dynamic_components: information about sga resize operations since startup.
This view can also be used to find out the granule size of SGA components.
v$sga_dynamic_components shows excatly the same information as v$memory_dynamic_components except that it does not include the two rows for SGA Target and PGA Target.
Both views select from x$kmgsct.
select
  component
from
  v$sga_dynamic_components
order by
  lower(component);
--
-- ASM Buffer Cache
-- DEFAULT 16K buffer cache
-- DEFAULT 2K buffer cache
-- DEFAULT 32K buffer cache
-- DEFAULT 4K buffer cache
-- DEFAULT 8K buffer cache
-- DEFAULT buffer cache
-- java pool
-- KEEP buffer cache
-- large pool
-- RECYCLE buffer cache
-- Shared IO Pool
-- shared pool
-- streams pool
Github repository oracle-patterns, path: /Installed/dynamic-performance-views/sga/dynamic_componentes/components.sql
select
  component,
  to_char(current_size / 1024/1024, '999,999') size_mb
from
  v$sga_dynamic_components
order by
  current_size desc;
Github repository oracle-patterns, path: /Installed/dynamic-performance-views/sga/dynamic_componentes/usage.sql

See also

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