oracle連接數

--查看oracle當前連接數
select * from v$session where username is not null

--查看不同用戶的連接數
select username,count(username) from v$session where username is not null group by username 

--連接數
select count(*) from v$session   

--併發連接數
Select count(*) from v$session where status='ACTIVE' 

--最大連接
show parameter processes   


發佈了29 篇原創文章 · 獲贊 6 · 訪問量 8萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章