modify static parameter in spfile [message #64048] |
Wed, 08 December 2004 23:09 |
shyam_kk
Messages: 9 Registered: August 2004
|
Junior Member |
|
|
i am using oralce 9i for windows rel 2.How can i set
paramters at instance level some of the parameters we cannot change dynamically.like log_Archive_format and log_Archive_start.I got error when i am tried with
alter system and scope=both
how to modify this parameter
with regards
shyam
|
|
|
|
Re: modify static parameter in spfile [message #64052 is a reply to message #64048] |
Thu, 09 December 2004 00:16 |
Vivek Vijai
Messages: 67 Registered: April 2004
|
Member |
|
|
To modify a static parameter like LOG_ARCHIVE_START use:
Alter system LOG_ARCHIVE_START=FALSE scope=SPFILE;
then at next starup u will notice that LOG_ARCHIVE_START is set to FALSE.
Hope this will solve your problem.
Vivek
|
|
|
|
|