zoukankan      html  css  js  c++  java
  • 【翻译自mos文章】在10g中,当发生ORA-00020时,sqlplus登陆会报“connected to an idle instance”

    在10g中。当发生ORA-00020时,sqlplus登陆会报“connected to an idle instance”

    来源于:
    Sqlplus Logon Reports 'connected to an idle instance' when ORA-20 happens in 10g (文档 ID 1370000.1)

    说的比較经典, 不做翻译,直接转帖:

    APPLIES TO:

    Oracle Server - Enterprise Edition - Version: 10.1.0.4 to 10.2.0.5 - Release: 10.1 to 10.2
    Information in this document applies to any platform.

    SYMPTOMS

    When the maximum number of processes is reached, and a next normal logon reports an ORA-20, a subsequent local connect as sysdba reports:

    SQL> connect / as sysdba
    Connected to an idle instance.


    Trying to start up the database reports:

    ORA-01081: cannot start already-running ORACLE - shut it down first


    The issue can be reproduced with the following steps:
    1. Using a 10g database, build sufficient processes until an ORA-20 occurs
    2. Then execute

    SQL> connect / as sysdba



     

    NOTE:
    Connecting from the OS command prompt using
    $ sqlplus / as sysdba
    the SYSDBA would get the "Connected" message


     

    CAUSE

    This is expected behavior in Oracle 10g, and is explained in unpublished 
    Bug 2935090 - SQLPLUS REPORTS CONNECT TO IDLE INSTANCE WHEN INSTANCE REACHES MAX PROCESSES.

      The reason we don't display error ORA-20 is because you are login as
      sysdba. Being DBA user you must be able to login regardless of the status of
      the database, so that you can take the necessary action to rectify the
      problem.

      As when login as normal user, you are getting the appropriate error but does
      not tell you the process limit. This is because the message is from rdbms
      layer so we have no control of that. In any case, the cause and Action for
      this message state very clear that what you need to do.
      .
      00020, 00000, "maximum number of processes (%s) exceeded"
      // *Cause: All process state objects are in use.
      // *Action: Increase the value of the PROCESSES initialization parameter.

    SOLUTION

    Ignore this 'Connected to an idle instance.' message and handle it just as a normal ORA-20 error.
    The behavior has been changeg in Oracle 11g where it reports an 'ORA-20' instead of 'Connected to an idle instance.'

  • 相关阅读:
    程序员这生必须掌握的两种图形
    用一张组织架构图说清楚类和对象
    简单工厂、工厂方法、抽象工厂的比较与分析
    rabbitmq系列(一)初识rabbitmq
    【最新】经典面试100问,附答案
    使用wordPress搭建个人博客
    调试接口你还在用postman吗
    Token ,Cookie、Session傻傻分不清楚?
    你不可不知的自定义注解
    使用aop加解密http接口
  • 原文地址:https://www.cnblogs.com/mthoutai/p/7398785.html
Copyright © 2011-2022 走看看