I want to increasing the shared pool size, when i execute the command i am getting this error:
My O/S is AIX 4.3
DB is Oracle9i
SQL> alter system set shared_pool_size=150m;
alter system set shared_pool_size=150m
*
ERROR at line 1:
ORA-02097: parameter cannot be modified because specified value is invalid
ORA-04033: Insufficient memory to grow pool
Obviously, you are trying to give a value which would exceed sga_max_size. What is sga_max_size set to? Have a look at that and then set a poper shared_pool_size (< 150M). Or alternatively increase sga_max_size.
Oracle Certified Master
Oracle Certified Professional 6i,8i,9i,10g,11g
email: ocp_9i@yahoo.com
Default value Initial size of SGA at startup, dependent on the sizes of different pools in the SGA, such as buffer cache, shared pool, large pool, and so on.
Parameter class Static
Range of values 0 to operating system-dependent
you can start adding up your buffer cache, shared pool, large pool, and so on parameters values and set your sga_max_size bigger than that
Bookmarks