`
- 浏览:
1028342 次
- 性别:
- 来自:
北京
-
ORA-01078和LRM-00109错误解决方法
SQL> connect sys/mzl as sysdba
已连接。
SQL> startup
ORA-01078: failure in processing system parameters
LRM-00109: could not open parameter file ’/opt/oracle/app/oracle/product/10.1.0/Db_1/dbs/initoracle.ora’
这是因为在oracle9i和oracle10g中,数据库默认将使用spfile启动数据库,如果spfile不存在,则就会出现上述错误。
解决方法:
将$ORACLE_BASE/admin/数据库名称/pfile目录下的init.ora.012009233838形式的文件copy到$ORACLE_HOME/dbs目录下initoracle.ora即可。(注:initoracle.ora中的oracle为你的实例名 ORACLE_SID)
SQL> startup
ORACLE instance started.
Total System Global Area 167772160 bytes
Fixed Size 778212 bytes
Variable Size 57679900 bytes
Database Buffers 109051904 bytes
Redo Buffers 262144 bytes
分享到:
Global site tag (gtag.js) - Google Analytics
相关推荐
在 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)。参数文件存储了数据库...