当前位置:Gxlcms > 数据库问题 > ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance

ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance

时间:2021-07-01 10:21:17 帮助过:6人阅读

SQL> show parameter log_archive_start

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
log_archive_start                    boolean     FALSE
SQL> alter system set log_archive_start=true scope=spfile;

System altered.

SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
ORACLE instance started.

Total System Global Area  574619648 bytes
Fixed Size                  8623208 bytes
Variable Size             339741592 bytes
Database Buffers          218103808 bytes
Redo Buffers                8151040 bytes
Database mounted.
Database opened.
SQL> alter system reset log_archive_start scope=spfile;

System altered.

SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORACLE instance started.

Total System Global Area  574619648 bytes
Fixed Size                  8623208 bytes
Variable Size             339741592 bytes
Database Buffers          218103808 bytes
Redo Buffers                8151040 bytes
Database mounted.
Database opened.

解决方法2:如果不是这个log_archive_start影响的,那可以查看告警日志

技术图片

 

 可以看到是加入了这个过期参数影响的,直接执行

alter system reset log_archive_start scope=spfile sid=‘*‘;

 参数过期参数语句

SELECT  NAME, DESCRIPTION FROM V$PARAMETER V WHERE V.ISDEPRECATED=TRUE;

每个版本的过期参数不一样,可以通过查看过期查看来查看错误

ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance

标签:png   bool   开启   boolean   设置   mamicode   archive   pfile   方法   

人气教程排行