zoukankan      html  css  js  c++  java
  • ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance

    客户安装12.2 db,重启库,提示过期参数报错ORA,需要一个好的解释说明。

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

     

    ORA报错解释

    SQL> !oerr ora 32004
    32004, 00000, "obsolete or deprecated parameter(s) specified for %s instance"
    // *Cause:  Obsolete or deprecated parameters for this instance type 
    //          were specified in the SPFILE or the PFILE on the server side.
    // *Action: See alert log for a list of parameters that are obsolete
    //          or deprecated. Remove them from the SPFILE or the server 
    //          side PFILE.

    SQL>查询数据库中存在的过期参数

    查询数据库中,废弃的参数值
    SQL>select name,description from v$parameter where isdeprecated='TRUE';
    参数名称-参数解释说明

    ORA-32004只是提示作用,当出现低版本已废弃的参数时,数据库启动均会报此ORA,可以忽略。

  • 相关阅读:
    p67 把特定位置的位变成0,进行与运算
    p65 逻辑与运算
    JavaScript对象和初始面向对象
    JavaScript操作DOM对象
    JavaScript操作BOM对象
    JavaScript基础
    DAO模式
    使用ADO.NET访问数据库
    连接查询和分组查询
    模糊查询和聚合函数
  • 原文地址:https://www.cnblogs.com/lvcha001/p/10513359.html
Copyright © 2011-2022 走看看