zoukankan      html  css  js  c++  java
  • ORA-32004 的错误处理

    启动数据库时,收到了ORA-32004 的错误,错误多是一些过时且在当前版本中不在使用的参数,如果碰到类似的错误,只需要将其

    reset即可。

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

    Total System Global Area 672256000 bytes
    Fixed Size 2216384 bytes
    Variable Size 457182784 bytes
    Database Buffers 209715200 bytes
    Redo Buffers 3141632 bytes
    Database mounted.
    Database opened.

    查看错误原因:

    ———分析错误

    SQL> ho 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.  

    --从告警日志中获得如下信息

    Deprecated system parameters with specified values:
    log_archive_start

    解决办法:SQL> alter system reset log_archive_start scope=spfile sid='*';

  • 相关阅读:
    UVa 1605
    UVa 120
    UVa 10384
    UVa 11694
    UVa 11846
    常用小函数
    【DP】:CF #319 (Div. 2) B. Modulo Sum
    类的无参方法
    类和对象
    七言
  • 原文地址:https://www.cnblogs.com/andy6/p/5728165.html
Copyright © 2011-2022 走看看