zoukankan      html  css  js  c++  java
  • What is the Database Initialization Parameter That is Associated to an ORA-32004 Error ?

    APPLIES TO:

    Oracle Database - Enterprise Edition - Version 9.2.0.1 to 11.2.0.3 [Release 9.2 to 11.2]
    Information in this document applies to any platform.
    ***Checked for relevance on 24-Jan-2012***


    GOAL

    How to know which parameter is obsolete and/or deprecated when the only message on screen when
    attempting to start a database is "ORA-32004: obsolete and/or deprecated parameter(s) specified" ?

    SOLUTION

    1. Look at the DBA's alert log of the associated instance as newer versions of the RDBMS software will identify the parameters that are obsolete and/or deprecated within the alert log at the time that an instance startup is initiated.

    2. If the alert log is not available or does not identify the obsolete or deprecated parameter and the database is accessible then check to see that none of the parameters in the parameter initialization file match a parameter name stored in the V$OBSOLETE_PARAMETER view of that same database. 
    Especially review any parameter where V$OBSOLETE_PARAMETER.ISSPECIFIED='TRUE'.

    If there is a match, then it is an obsolete parameter.

    3. If the alert log is not available or does not identify the obsolete or deprecated parameter then check to see that none of the parameters in the parameter initialization file match a parameter name listed within the migration guide's list of deprecated parameters or it's list of obsolete parameters.

    To resolve ORA-32004 errors, remove the identified obsolete parameters are restart the database.
  • 相关阅读:
    javaWeb学习笔记之关于重定向和请求转发的区别
    javaWeb学习笔记之关于Servlet文件下载
    javaWeb学习笔记之关于http
    javaWeb学习笔记之关于tomcat
    小程序订阅消息推送
    Oracle数据库序列的相关问题
    将本地项目push到gitlab仓库中
    面试之BI-SQL--table转换[2]
    面试之BI-SQL--table转换
    面试之C#--垃圾回收器什么时候回收?
  • 原文地址:https://www.cnblogs.com/future2012lg/p/4941074.html
Copyright © 2011-2022 走看看