How to check the maximum number of allowed connections to an Oracle database?

后端 未结 7 2053
独厮守ぢ
独厮守ぢ 2020-11-28 01:59

What\'s the best way, using SQL, to check the maximum number of connections that is allowed for an Oracle database? In the end, I would like to show the current number of se

7条回答
  •  情话喂你
    2020-11-28 02:11

    select count(*),sum(decode(status, 'ACTIVE',1,0)) from v$session where type= 'USER'
    

提交回复
热议问题