Hi,
"select * from v$sga" gives me the following
Total SGA 208.93 MB
Fixed Size 450780 bytes
Variable Size 285212672 bytes
Database Buffers 33554432 bytes
Redo Buffers 667648 bytes
Do you see anything wrong?
Moreover how to increase the Database Buffer Cache? Does it mean i need to increase the init paramater named "db_block_buffers". The db_block_size is set to 8192.
Moreover, is it possible to change the parameters for an oracle session just for test to see the actual performance gain, without restarting the db server??
fargo
Main Topics
Browse All Topics





by: schwertnerPosted on 2006-04-03 at 04:21:00ID: 16359594
How you understand that Oracle doesn't use the RAM.
To understand the volume of RAM Oracle uses invoke Oracle enterprise manager
and look at the instance SGA (System Global Area) parameters. There are also GUI based
advisors that will advise you how to increase/decrease the size of the SGA.
Alternatively you can issue:
SQL> show sga
Total System Global Area 680600380 bytes
Fixed Size 455484 bytes
Variable Size 360710144 bytes
Database Buffers 318767104 bytes
Redo Buffers 667648 bytes
Normally there are two components that need adjustment:
Database Buffer Cache
Shared Pool
Increase Database Buffer Cache
and Oracle will work faster.