oracle 查看和设置最大连接数{转}

当前的连接数
select count(*) from v$process;

设置的最大连接数(默认值为150)
select value from v$parameter where name = 'processes';

修改最大连接数
alter system set processes = 300 scope = spfile;

当数据库最大连接数不够时会出现客户端连接间歇性失败,报错ORA-12519。

猜你喜欢

转载自helloworlda.iteye.com/blog/1125188
今日推荐