Oracle 故障:[4]ORA-32004: obsolete or ...
1、启动数据库到nomount状态[oracle@oracle11g dbs]$ sqlplus / as sysdbaSQL*Plus: Release 11.2.0.4.0 Production on Mon Nov 3 09:43:56 2014Copyright (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 instanceORACLE instance started.Total System Global Area 784998400 bytesFixed Size 2257352 bytesVariable Size 528485944 bytesDatabase Buffers 251658240 bytesRedo Buffers 2596864 bytes因为是在编辑完pfile文件之后,启动到nomount状态,数据库在
![Oracle 故障:[4]ORA-32004: obsolete or ...](https://exp-picture.cdn.bcebos.com/edafb3bcbe2f47704873506e6f3b3b86032179c3.jpg)
3、编辑pfile文件注释一下两个多余参数:log_archive_startstandby_archive_dest
![Oracle 故障:[4]ORA-32004: obsolete or ...](https://exp-picture.cdn.bcebos.com/974a2f21056104a349820c1a63d7592ae2ef6bc3.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 pfile3:指定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)