Method 1:
if it is not a parameter that can be modified via ALTER SYSTEM then use:
Method 2:
-
Run
ALTER SYSTEM SET processes=(processes + 5) SCOPE=SPFILE SID='*';
- Reboot (Issue shutdown and startup)
if it is not a parameter that can be modified via ALTER SYSTEM then use:
Method 2:
- Run
CREATE PFILE='$ORACLE_HOME/dbs/initSID.ora' FROM SPFILE='location/spfile.ora';
this will create PFILE called initSID.ora at $ORACLE_HOME/dbs - Make changes to initSID.ora file via vi editor
- Shutdown the database
- Startup (nomount) the instance where you created and altered the pfile using this pfile only
- Create a new spfile
- Shutdown this instance again
- Now startup normally without PFILE or SPFILE option:
- Remove the PFILE (Optional)
- To confirm that the parameter has been modified, issue following sql statement:
STARTUP PFILE=$ORACLE_HOME/dbs/initSID.ora
CREATE SPFILE='location/spfile.ora' FROM PFILE=‘$ORACLE_HOME/dbs/initSID.ora’;
STARTUP
SHOW PARAMETER
No comments:
Post a Comment