zoukankan      html  css  js  c++  java
  • 【转载】修改oracle的最大连接数 以及 object is too large to allocate on this o/s

    http://www.blogjava.net/gf7/archive/2007/03/13/103556.html

    c:\sqlplus /nolog
    SQL>conn / as sysdba

    SQL> show parameter processes;

    NAME TYPE VALUE
    ------------------------------------ ----------- ------------------------------
    aq_tm_processes integer 1
    db_writer_processes integer 1
    job_queue_processes integer 10
    log_archive_max_processes integer 1
    processes integer 150

    SQL> alter system set processes=300 scope = spfile;            

    --我在这里改成30000了

    系统已更改。

    SQL> show parameter processes;

    NAME TYPE VALUE
    ------------------------------------ ----------- ------------------------------
    aq_tm_processes integer 1
    db_writer_processes integer 1
    job_queue_processes integer 10
    log_archive_max_processes integer 1
    processes integer 150

    SQL> create pfile from spfile;

    文件已创建。


    重启数据库,OK!

    ============================

    http://blog.csdn.net/wxygod/archive/2005/10/27/517880.aspx

    SQL> startup

    ORA-00064: object is too large to allocate on this O/S (1,9960000)

    找到D:\oracle\ora92\database\INITtest.ORA(9i)

      D:\oracle\product\10.2.0\db_1\database\(10G)

    记事本打开 修改30000为300

    startup pfile='INITtest.ORA' ;

    启动OK

    create spfile from pfile ;

  • 相关阅读:
    nginx的优化
    apache日志轮询技术
    PV IP UV的概念介绍
    日志文件记录的重要性
    linux chmod 755
    ssh免密码登录机器(使用公钥和秘钥进行加密来实现)
    ffmpeg基础
    linux使用grep和find查找内容
    为什么我们会越来越穷?
    从我干程序员开始 我就不准备干这个行业
  • 原文地址:https://www.cnblogs.com/threestone/p/1854147.html
Copyright © 2011-2022 走看看