`
shenhaocric
  • 浏览: 44600 次
  • 性别: Icon_minigender_1
  • 来自: 青岛
社区版块
存档分类

The Connection descriptor used by the client

 
阅读更多

可能是数据库上当前的连接数目已经超过了它能够处理的最大值.


查看当前的连接数

select count(*) from v$process;

 
数据库允许的最大连接数

select value from v$parameter where name='processes'; 

 

修改最大连接数:

alter system set processes=300 scope=spfile; 

 
重启数据库:

shutdown immediate;
startup; 

 shutdown   默认的是normal.可以省略;

 startup       默认的是open,也可以省略;

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics