• Oracle Database 10g Express Edition 最大连接数的修改方法


    Oracle XE默认连接数好像是40个,如果process超出这个数字,再次申请连接就会被拒绝。

    1,用system用户登录:

    sqlplus system/password@xe

    2,执行以下命令:

    alter system set session_cached_cursors=200 scope=spfile;

    alter system set session_max_open_files=200 scope=spfile;

    alter system set sessions=20 scope=spfile;

    alter system set license_max_sessions=200 scope=spfile;

    alter system set license_sessions_warning=200 scope=spfile;

    alter system set processes=200 scope=spfile;

    3,重启Oracle XE数据库服务。
  • 相关阅读:
    Javascript
    CSS3新增特性HTML标签类型
    HTML5新增的标签
    prototype __proto__ Function
    oninput
    extend
    hasOwnProperty()
    this prototype constructor
    Array类型判断
    指针
  • 原文地址:https://www.cnblogs.com/Leon5/p/1913692.html
Copyright © 2020-2023  润新知