Need help on Initialization Parameters [message #151505] |
Thu, 15 December 2005 03:37 |
reena_ch30
Messages: 100 Registered: December 2005
|
Senior Member |
|
|
Hi,
How to check which parameter is modifiable using scope=spfile/memory/both.I guess the issys_modifiable parameter in v$parameter is applicable only for scope=memory .Also, which are the main parameters that can be changed dynamically with scope=Memory/Both using spfile that were not sys modifiable
with pfile..??
Regards,
reena
|
|
|
Re: Need help on Initialization Parameters [message #151522 is a reply to message #151505] |
Thu, 15 December 2005 06:12 |
tarundua
Messages: 1080 Registered: June 2005 Location: India
|
Senior Member |
|
|
SQL> select distinct issys_modifiable from v$parameter;
ISSYS_MOD
---------
DEFERRED
FALSE
IMMEDIATE
If the ISSYS_MODIFIABLE value is set to FALSE for a parameter,it means that the parameter cannot change its value in the lifetime of the instance; the database needs to be restarted for changes to take effect. A parameter set to IMMEDATE value means that it is dynamic and can be set to change the present active instance as well as future database restarts. A parameter set to DEFERRED is also dynamic, but changes only affect subsequent sessions, currently active sessions will not be affected and retain the old parameter value.
Mean to say :
scope
IMMEDIATE -- memory/spfile/both
FALSE -- spfile only
Hope its clear now.
|
|
|
Re: Need help on Initialization Parameters [message #151539 is a reply to message #151505] |
Thu, 15 December 2005 07:29 |
reena_ch30
Messages: 100 Registered: December 2005
|
Senior Member |
|
|
Hi Tarun,
But there are certain parameters with issys_modifiable=false in v$parameter which i am not able to change even by using scope=spfile in alter system(Though alter session is allowed).e.g nls_date_format...
Please check the below output:
1* alter system set nls_date_format='dd/mm/yyyy' scope=spfile
SQL> /
alter system set nls_date_format='dd/mm/yyyy' scope=spfile
*
ERROR at line 1:
ORA-02096: specified initialization parameter is not modifiable with this option
That's where i got confused....!!!Please justify.
Regards,
reena
|
|
|
|
|
|
|
|