mysql和oracle的鏈接數

orcle的鏈接數:
SQL> select count(*) from v$session  #鏈接數
SQL> Select count(*) from v$session where status='ACTIVE' #併發鏈接數
SQL> show parameter processes  #最大鏈接

 mysql的鏈接數:mysql

show status like 'Connections';--查看服務器的鏈接次數,試圖鏈接到(不論是否成功)MySQL服務器的鏈接數sql

 Max_used_connections : 服務器啓動後已經同時使用的鏈接的最大數量。緩存

show status like 'Max_used_connections';查看曾經的最大鏈接數服務器

show status like 'Threads_connected';--打開的鏈接數,查看當前鏈接的線程數session

max_connections:系統支持的最大鏈接: 併發

max_user_connections:用戶能最大鏈接進來的數量: .net

show status like 'threads_running';查看當前正在運行的線程數線程

show status like 'threads_cached';查看線程緩存中的線程數 get

相關文章
相關標籤/搜索