DSGA [message #185431] |
Tue, 01 August 2006 13:52 |
Yasir Hashmi
Messages: 304 Registered: April 2006
|
Senior Member |
|
|
Hey all,
How to size SGA dynamically without instance shutdown?
Thanks and Regards
Yasir Hashmi
|
|
|
|
|
Re: DSGA [message #185442 is a reply to message #185431] |
Tue, 01 August 2006 14:55 |
Yasir Hashmi
Messages: 304 Registered: April 2006
|
Senior Member |
|
|
SQL> startup
ORACLE instance started.
Total System Global Area 118561572 bytes
Fixed Size 453412 bytes
Variable Size 92274688 bytes
Database Buffers 25165824 bytes
Redo Buffers 667648 bytes
Database mounted.
Database opened.
DB_CACHE_SIZE 25165824 BYTES
What determines the size of database buffers?
Is it DB_CACHE_SIZE or DB_BLOCK_SIZE
|
|
|
Re: DSGA [message #185445 is a reply to message #185431] |
Tue, 01 August 2006 15:42 |
Yasir Hashmi
Messages: 304 Registered: April 2006
|
Senior Member |
|
|
Redo log buffer size depends on LOG_BUFFER parameter.
Its size is 524288 bytes but in the startup command
SQL> startup
ORACLE instance started.
Total System Global Area 118561572 bytes
Fixed Size 453412 bytes
Variable Size 92274688 bytes
Database Buffers 25165824 bytes
Redo Buffers 667648 bytes
Database mounted.
Database opened.
it is 667648 bytes.
From where are the remaining bytes coming?
Thanks and Regards
Yasir Hashmi
|
|
|
|
Re: DSGA [message #185452 is a reply to message #185431] |
Tue, 01 August 2006 17:22 |
Yasir Hashmi
Messages: 304 Registered: April 2006
|
Senior Member |
|
|
DB_CACHE_SIZE determines the database buffer size.
LOG_BUFFER determines the Redo Buffer size.
LOG_BUFFER value is 524288 bytes but in the STARTUP command
Redo Buffers size is 667648 bytes.
Are there any additional parameters on which Redo Buffers size depend?
|
|
|