ORA-32004: obsolete and/or deprecated parameter(s) specified

在系统启动的时候,报错

 

 

SQL> startup;
ORA-32004: obsolete and/or deprecated parameter(s) specified
ORACLE 例程已经启动。

Total System Global Area  289406976 bytes
Fixed Size                  1248576 bytes
Variable Size             104858304 bytes
Database Buffers          176160768 bytes
Redo Buffers                7139328 bytes
数据库装载完毕。
数据库已经打开。


看了alter的日志,也是提示这个

Deprecated system parameters with specified values:
  log_archive_start       
End of deprecated system parameter listing
确认这个参数在11中已经不推荐使用了,
查了相关资料,要重置该参数
SQL>ALTER SYSTEM RESET log_archive_start SCOPE=SPFILE SID='*';
 System altered.

SQL> shutdown immediate;
数据库已经关闭。
已经卸载数据库。
ORACLE 例程已经关闭。
SQL> startup;
ORACLE 例程已经启动。

Total System Global Area  289406976 bytes
Fixed Size                  1248576 bytes
Variable Size             104858304 bytes
Database Buffers          176160768 bytes
Redo Buffers                7139328 bytes
数据库装载完毕。
数据库已经打开。


查看一下 11g 中都有那些参数是 deprecated 的:

SQL> SELECT NAME, description FROM v$parameter  WHERE isdeprecated = 'TRUE';

posted on 2008-10-23 22:54  一江水  阅读(1653)  评论(0编辑  收藏  举报