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 ;

  • 相关阅读:
    caffe学习笔记(1)安装
    windows下遍历文件夹
    图像处理之OpenCV
    OpenCV的安装和使用
    使用cpplint检测代码规范
    图像处理之原理
    Python 在cmd中import模块成功,但是在jupyter notebook中No module xxx found
    Win10上使用VS2015编译Caffe2
    Win10, VS2017环境下OpenCV3.4.2的配置
    C++ main函数的参数
  • 原文地址:https://www.cnblogs.com/threestone/p/1854147.html
Copyright © 2011-2022 走看看