Tagged: oracle database scope parameters

Specifying SCOPE in parameters

“Scope” is a parameter used for the alter system command when you are changing any initialization parameter of an spfile. It is vital to understand how to use this parameter to achieve the desired effect. The SCOPE parameter can take this three values MEMORY, SPFILE and BOTH. Alter system set PARAMETER=VALUE SCOPE=SPFILE; If you want to make a change to a parameter in the spfile without affecting the current instance, you can do so using the SCOPE=SPFILE option of the ALTER SYSTEM statement. This is useful when you want to make a change starting from the next startup and not...