ORA-01078: failure in processing system parameters的解决
SID配置错误,用dbca删除后重新创建不同SID的新库,报:ORA-01078: failure in processing system parameters
=================
解决:
http://blog.chinaunix.net/uid-24612962-id-3191513.html
原理:在oracle9i和oracle10g中,数据库默认将使用spfile启动数据库,如果spfile不存在,则就会出现上述错误。
解决办法:
方法一:将$ORACLE_BASE/admin/orcl/pfile目录下的init.ora.0212012125517形式的文件copy到$ORACLE_HOME/dbs目录下initoracl.ora即可。(注:initoracl.ora中的oracl为你的实例名ORACLE_SID,这里我的SID为:orcl10g)
方法二:将$ORACLE_HOME/dbs目录下spflieoracl.ora改名为spfileorcl10g.ora即可。(注:spfileorcl10g.ora中的orcl10g为环境变量中设置的SID,我的是orcl10g)
http://xingxing5421.blog.163.com/blog/static/11944631920116193461719/
SQL> startup
ORA-01078: failure in processing system parameters
LRM-00109: could not open parameter file '/oracle/product/10g/dbs/initorc1.ora'
解决方法:
cp $ORACLE_BASE/admin/$ORACLE_SID/pfile/init.ora.10102009132131 /oracle/product/10g/dbs/initorc1.ora 注initora文件可能名字不一样
http://wanwentao.blog.51cto.com/2406488/435401
SQL> startup ORA-01078: failure in processing system parameters LRM-00109: could not open parameter file '/opt/oracle/products/10.1.0.3/db_1/dbs/initrawdb.ora' 解决办法: cp $ORACLE_BASE/admin/$ORACLE_SID/pfile/init.ora /opt/oracle/products/10.1.0.3/db_1/dbs/initrawdb.ora