查询SQL连接数
2019-03-30 本文已影响0人
彩笺w尺素
查询oracle连接数
--当前的连接数
select count(*) from v$process;
--数据库允许的最大连接数
select value from v$parameter where name = 'processes';
--修改最大连接数
alter system set processes = 1000 scope = spfile;
查询MySQL连接数
--查看当前最大连接数是多少,通常默认为270左右
show variables like '%max_connections%';
--设置mysql最大连接数为1000
set global max_connections=1000;