Note_Tech

All technological notes.


Project maintained by simonangel-fong Hosted on GitHub Pages — Theme by mattgraham

DBA - Architecture: Memory Stucture

Back


Memory Structures

memory_structure


System Global Area (SGA)


SGA: Shared pool

sga_shared_pool


SGA: Database Buffer Cache

sga_buffer_cache


SGA: Redo Log Buffer

sga_redo_log_buffer


SGA: Large Pool

sga_large_pool


SGA: Java Pool

sga_large_pool


SGA:Streams Pool

sga_stream_pool


PGA

pga



In-Memory Column Store



sga_im_store


sga_IM_caching


Summary

portion of the SGA Process File Desc
Shared pool     data dict,sql statement
Database Buffer Cache DBWn data file holds block images read from data files
Redo Log Buffer LGWR redo log file holds information about changes
Large Pool     Session, IO, Query, queue
Java Pool     JVM
Streams Pool Streams processes   Queue messages

TOP