一同事今天刚装完oracle10g后,通过startup命令启动数据库时报错,详细如下:
SQL> startup
ORA-01078: failure in processing system parameters
LRM-00109: could not open parameter file '/oracle/product/10.0.3/gjwgdb/dbs/initgjwgdb.ora'
错误很明确,就是当数据库在启动时,默认读取pfile参数文件时报错了,此时我进入该目录一看,pfile文件真的是没有被创建。
解决办法是:
$cd /oracle/admin/gjwgdb/pfile
cp init.ora /oracle/product/10.0.3/gjwgdb/dbs/initgjwgdb.ora
然后
$sqlplus / as sysdba
SQL>startup;
......
Database mounted.
Database opened.
标注:1.Oracle在启动过程中,需要读取参数文件(pfile/spfile)来创建实例。
2.Oracle在启动过程中,寻找参数文件的顺序为:
spfile<sid>.ora,spfile.ora,init<sid>.ora.
分享到:
相关推荐
在 Linux 环境中安装 Oracle 时,可能会遇到各种错误,这篇文章将对 ORA-01078、LRM-00109、ORA-01102、ORA-12541、ORA-12528、ORA-01033 和 ORA-28547 等错误进行详细的解决方法。 在安装 Oracle 10 后,配置网络...
- **ORA-07445**是另一个表示内部错误的错误代码,可能与特定操作系统的兼容性问题有关。解决这类问题的方法通常包括更新操作系统补丁、重新编译Oracle二进制文件或调整内核参数等。 通过以上对Oracle11g常见故障...
LRM-00109: could not open parameter file /opt/oracle/app/oracle/product/10.1.0/db_1/dbs/initoracle.ora ``` **解决方法:** - 首先检查参数文件路径是否正确。 - 如果使用的是`spfile`,则该文件通常位于 `$...
LRM-00109: could not open parameter file '/opt/oracle10g/product/10.2/db_1/dbs/initORA10G.ora' ``` 这表明Oracle数据库在启动过程中未能成功读取初始化参数文件(init.ora或spfile)。参数文件存储了数据库...