故障现象:ORA-01078: failure in processing system parameters

故障现象:ORA-01078: failure in processing system parameters 
 
LRM-00109: could not open parameter file '/u01/app/oracle/product/10.2.0/db_1/dbs/initorcl10g.ora'
 
原理:在oracle9i和oracle10g中, 数据库默认将使用spfile启动数据库,如果spfile不存在,则就会出现上述错误。
  www.2cto.com  
解决办法:
 
方法一:将$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)
---------------------------------------------------------------------------------------
 
故障: 
[root@RHEL5 ~]# su – oracle 
[oracle@RHEL5 ~]$ sqlplus "/as sysdba"
 
SQL*Plus: Release 10.2.0.1.0 Production on Sat Jan 21 13:10:47 2012
 
Copyright (c) 1982, 2009, Oracle.  All rights reserved.
 
Connected to an idle instance.
  www.2cto.com  
SQL> startup 
ORA-01078: failure in processing system parameters 
LRM-00109: could not open parameter file '/u01/app/oracle/product/10.2.0/db_1/dbs/initorcl10g.ora'
 
解决: 
[oracle@RHEL5 ~]$ find /u01  -name pfile    //查看pfile位置 
/u01/ora/admin/orcl/pfile 
[oracle@RHEL5 ~]$ ls -l /u01/app/admin/orcl/pfile   
total 4 
-rw-r----- 1 oracle oinstall 1909 Jan 21 12:45 init.ora.0212012125517 
[oracle@RHEL5 ~]$  
cp /u01/ora/admin/orcl/pfile/init.ora.0212012125517  /u01/app/oracle/product/10.2.0/db_1/dbs/          //把pfile下的init.ora.0212012125517
 
复制/u01/app/oracle/product/10.2.0/db_1/dbs/initorc1.ora并改名为initorc1.ora 
[oracle@RHEL5 ~]$ cp /u01/app/admin/orcl/pfile/init.ora.0212012125517  /u01/app/oracle/product/10.2.0/db_1/dbs/initorc1.ora 
[oracle@RHEL5 ~]$ ls -l  /u01/app/oracle/product/10.2.0/db_1/dbs 
total 32 
-rw-r--r-- 1 oracle oinstall 2851 May 15  2009 init.ora 
drwx------ 2 oracle oinstall 4096 Jan 21 12:45 peshm_orcl_0 
-rw-rw---- 1 oracle oinstall 1544 Jan 21 12:45 hc_orcl.dat 
-rw-r----- 1 oracle oinstall   24 Jan 21 12:49 lkORCL 
-rw-r----- 1 oracle oinstall 1536 Jan 21 12:56 orapworcl 
-rw-r----- 1 oracle oinstall 2560 Jan 21 13:16 spfileorcl.ora 
-rw-r----- 1 oracle oinstall 1909 Jan 21 13:18 initorc1.ora
  www.2cto.com  
[oracle@RHEL5 ~]$ sqlplus "/as sysdba"
 
SQL*Plus: Release 10.2.0.1.0 Production on Sat Jan 21 13:26:28 2012
 
Copyright (c) 1982, 2009, Oracle.  All rights reserved.
 
Connected to an idle instance.
LRM-00109: could not open parameter file '/u01/app/oracle/product/10.2.0/db_1/dbs/initorcl10g.ora'
 
原理:在oracle9i和oracle10g中, 数据库默认将使用spfile启动数据库,如果spfile不存在,则就会出现上述错误。
  www.2cto.com  
解决办法:
 
方法一:将$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)
---------------------------------------------------------------------------------------
 
故障: 
[root@RHEL5 ~]# su – oracle 
[oracle@RHEL5 ~]$ sqlplus "/as sysdba"
 
SQL*Plus: Release 10.2.0.1.0 Production on Sat Jan 21 13:10:47 2012
 
Copyright (c) 1982, 2009, Oracle.  All rights reserved.
 
Connected to an idle instance.
  www.2cto.com  
SQL> startup 
ORA-01078: failure in processing system parameters 
LRM-00109: could not open parameter file '/u01/app/oracle/product/10.2.0/db_1/dbs/initorcl10g.ora'
 
解决: 
[oracle@RHEL5 ~]$ find /u01  -name pfile    //查看pfile位置 
/u01/ora/admin/orcl/pfile 
[oracle@RHEL5 ~]$ ls -l /u01/app/admin/orcl/pfile   
total 4 
-rw-r----- 1 oracle oinstall 1909 Jan 21 12:45 init.ora.0212012125517 
[oracle@RHEL5 ~]$  
cp /u01/ora/admin/orcl/pfile/init.ora.0212012125517  /u01/app/oracle/product/10.2.0/db_1/dbs/          //把pfile下的init.ora.0212012125517
 
复制/u01/app/oracle/product/10.2.0/db_1/dbs/initorc1.ora并改名为initorc1.ora 
[oracle@RHEL5 ~]$ cp /u01/app/admin/orcl/pfile/init.ora.0212012125517  /u01/app/oracle/product/10.2.0/db_1/dbs/initorc1.ora 
[oracle@RHEL5 ~]$ ls -l  /u01/app/oracle/product/10.2.0/db_1/dbs 
total 32 
-rw-r--r-- 1 oracle oinstall 2851 May 15  2009 init.ora 
drwx------ 2 oracle oinstall 4096 Jan 21 12:45 peshm_orcl_0 
-rw-rw---- 1 oracle oinstall 1544 Jan 21 12:45 hc_orcl.dat 
-rw-r----- 1 oracle oinstall   24 Jan 21 12:49 lkORCL 
-rw-r----- 1 oracle oinstall 1536 Jan 21 12:56 orapworcl 
-rw-r----- 1 oracle oinstall 2560 Jan 21 13:16 spfileorcl.ora 
-rw-r----- 1 oracle oinstall 1909 Jan 21 13:18 initorc1.ora
  www.2cto.com  
[oracle@RHEL5 ~]$ sqlplus "/as sysdba"
 
SQL*Plus: Release 10.2.0.1.0 Production on Sat Jan 21 13:26:28 2012
 
Copyright (c) 1982, 2009, Oracle.  All rights reserved.
 
Connected to an idle instance.

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/31123655/viewspace-2120313/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/31123655/viewspace-2120313/

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值