Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: SGA sizing
Yosi, here is the output from v$parameter and
v$system_parameter. As far as I was aware, ismodified will be non-false if an
alter session or alter system command has been carried out. isadjusted will be
non-false if Oracle has dynamically adjusted the parameter.
Show SGA has the following output...
SQL> show sga
Total System Global Area
11953420 bytesFixed
Size
Buffers
SQL> l 1 SELECT name, 2 value, 3 isdefault, 4
VALUE ISDEFAULT ISMODIFI ISADJ-------------------------- --------- -------- -----shared_pool_size 4951040 FALSE FALSE
FALSE FALSE FALSElog_buffer 32768 FALSE
2 value, 3 isdefault, 4 ismodified, 5 isadjusted 6 FROM v$parameter 7 WHERE name IN('shared_pool_size','java_pool_size','log_buffer','large_pool_size') 8 /
ISADJ---------------- ---------- --------- ---------------shared_pool_size 4951040
FALSE FALSE FALSEjava_pool_size 32768 FALSE FALSE FALSElog_buffer 32768 FALSE
![]() |
![]() |