Changing the parameter of spfile :
As we know the SPFILE of the database can't not be updated by user and it is only updated by database itself.On other hand,the PFILE can be updated by DBA user using Notepad and other editors.You can also change the parameters of SPFILE using ALTER COMMAND.An example here which will change the parameter of SPFILE.
Code:
SQL> ALTER SYSTEM SET open_cursors=300 SCOPE=SPFILE;
SQL> ALTER SYSTEM SET timed_statistics=TRUE
COMMENT='Altered by me on 6 Jan 2010'
SCOPE=BOTH
SID='*';
Using Scope parameter we can specify particular changes in SPFILE.
Bookmarks