本文主要是介绍MySQL、Oracle查看最大连接数和当前连接数,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- 1. MySQL
- 2. Oracle
1. MySQL
-- 查看最大连接数
show variables like 'max_connections';
select @@max_connections;
-- select * from performance_schema.session_variables where VARIABLE_NAME in ('max_connections');
-- select * from performance_schema.global_variables where VARIABLE_NAME in ('max_connections');
-- select * from performance_schema.persisted_variables where VARIABLE_NAME in ('max_connections');
-- 查看当前连接数
show status like 'Threads_connected';
select count(1) from processlist;
2. Oracle
-- 允许最大进程数、连接数
select name,value from v$parameter where name in('processes' ,'sessions');
-- 当前进程数、连接数
select count(1) from v$session;
select count(1) from v$process;
这篇关于MySQL、Oracle查看最大连接数和当前连接数的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!