Oracle 故障:[4]ORA-32004: obsolete or ...
1、启动数据库到nomount状态
[oracle@oracle11g dbs]$ sqlplus / as sysdba
SQL*Plus: Release 11.2.0.4.0 Production on Mon Nov 3 09:43:56 2014
Copyright (c) 1982, 2013, Oracle. All rights reserved.
Connected to an idle instance.
SQL> startup nomount;
ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
ORACLE instance started.
Total System Global Area 784998400 bytes
Fixed Size 2257352 bytes
Variable Size 528485944 bytes
Database Buffers 251658240 bytes
Redo Buffers 2596864 bytes
因为是在编辑完pfile文件之后,启动到nomount状态,数据库在
![Oracle 故障:[4]ORA-32004: obsolete or ...](https://exp-picture.cdn.bcebos.com/edafb3bcbe2f47704873506e6f3b3b86032179c3.jpg)
2、查看alter日志
oracle 11g 默认alert日志目录:
[oracle@oracle11g trace]$ pwd
/u01/app/oracle/diag/rdbms/test/test/trace
发现参数文件应该注释掉:
log_archive_start
standby_archive_dest
![Oracle 故障:[4]ORA-32004: obsolete or ...](https://exp-picture.cdn.bcebos.com/3ac71c214f57935646d07794effb960b302170c3.jpg)
3、编辑pfile文件
注释一下两个多余参数:
log_archive_start
standby_archive_dest
![Oracle 故障:[4]ORA-32004: obsolete or ...](https://exp-picture.cdn.bcebos.com/974a2f21056104a349820c1a63d7592ae2ef6bc3.jpg)
4、重新启动数据库到nomount状态
![Oracle 故障:[4]ORA-32004: obsolete or ...](https://exp-picture.cdn.bcebos.com/e2aefe781431dfb61607d8d212cf02532e6363c3.jpg)
5、在Oracle 11g中手工设置了log_archive_start 为true,在启动时就会出现ORA-32004
从10g以后当数据库为归档模式时,oracle会自动启动归档进程
6、数据库默认启动参数文件为spfile 二进制文件,如果没有,找pfile 文本文件
1:startup nomount
通过 show parameter pfile 发现spfile为空,说明数据库由pfile文件启动
2:创建spfile create spfile from pfile
3:指定pfile文件启动
startup nomount pfile=/u01/app/oracle/product/11.2.0/db_1/dbs/inittest.ora
![Oracle 故障:[4]ORA-32004: obsolete or ...](https://exp-picture.cdn.bcebos.com/e3d059e833e039721268345eb5863048604356c3.jpg)
![Oracle 故障:[4]ORA-32004: obsolete or ...](https://exp-picture.cdn.bcebos.com/6002c9d4483104ebc1ccd0bb092b74ee1d324ec3.jpg)