Tuning SGA with scripts (Part 4) - Redo Log Buffer
in Oracle,
“The redo log buffer is a circular buffer in the SGA that holds information about changes made to the database. This information is stored in redo entries. Redo entries contain the information necessary to reconstruct, or redo, changes made to the database by INSERT, UPDATE, DELETE, CREATE, ALTER, or DROP operations. Redo entries are used for database recovery, if necessary.
Redo entries are copied by Oracle server processes from the user’s memory space to the redo log buffer in the SGA. The redo entries take up continuous, sequential space in the buffer. The background process LGWR writes the redo log buffer to the active online redo log file (or group of files) on disk.”
In Oracle 9i, Maximum of Log Buffer is 512 KB or 128 KB * CPU_COUNT, whichever is greater. And, it’s adjustable.
In Oracle 10g, Log_buffer can no longer be modified and will be set by default by Oracle.
(Script to “Check how often user process has to wait for space in the redo log buffer”)
Popularity: 6% [?]
Tags:none















