zoukankan      html  css  js  c++  java
  • 手动建库时一个小错误:ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance

    此前执行了CREATE SPFILE FROM MEMORY.  重新使用SPFILE启动时,出错如下:

    SYS@ bys3>startup

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

    Total System Global Area  150654976 bytes
    Fixed Size                  1363216 bytes
    Variable Size              96469744 bytes
    Database Buffers           50331648 bytes
    Redo Buffers                2490368 bytes
    Database mounted.
    Database opened.

    查看ALERT日志,发现有以下错误信息:
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Thu Nov 14 15:43:16 2013
    WARNING: The b ackground_dump_dest init.ora parameter has been deprecated.
    WARNING: Please remove the background_dump_dest parameter from the init.ora file.
    WARNING: The diagnostic_dest init.ora parameter now determines the location of the diagnostic data
    WARNING: The new location for the background logs and traces is /u01/app/oracle/product/11.2.0/dbhome_1/log/diag/rdbms/bys3/bys3/trace

    Thu Nov 14 15:43:16 2013
    WARNING: The user_dump_dest init.ora parameter has been deprecated.
    WARNING: Please remove the user_dump_dest parameter from the init.ora file.
    WARNING: The diagnostic_dest init.ora parameter now determines the location of the diagnostic data

    WARNING: The new location for the user logs and traces is /u01/app/oracle/product/11.2.0/dbhome_1/log/diag/rdbms/bys3/bys3/trace

    解决方法:

    1.先CREATE PFILE FROM SPFILE。

    2.然后在PFILE里将background_dump_destuser_dump_dest这两个参数删除。--在PFILE里可以看到这两个参数后面都显示的大致有参数deprecated.这种语句。如下:

    *.user_dump_dest='/u01/app/oracle/product/11.2.0/dbhome_1/log/diag/rdbms/bys3/bys3/trace' #Deprecate parameter

    3.重新使用CREATE SPFILE FROM PFILE,然后正常启动即可。

  • 相关阅读:
    2015南阳CCPC L
    2015南阳CCPC H
    2015南阳CCPC G
    2015南阳CCPC D
    2015南阳CCPC C
    2015南阳CCPC A
    2015长春赛区总结(其实是流水账
    Codeforces Round #326 (Div. 2) D. Duff in Beach dp
    Codeforces Round #326 (Div. 2) C. Duff and Weight Lifting 水题
    Codeforces Round #326 (Div. 2) B. Duff in Love 分解质因数
  • 原文地址:https://www.cnblogs.com/james1207/p/3424287.html
Copyright © 2011-2022 走看看