Oracle 并发 连接数 查询

2022/6/11 2:21:26

本文主要是介绍Oracle 并发 连接数 查询,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

如何查看ORACLE的并发值,也就是说在某一秒同时在线的人数

可是查看v$license视图

v$license视图:

SQL> select SESSIONS_CURRENT,SESSIONS_HIGHWATER from v$license;
SESSIONS_CURRENT SESSIONS_HIGHWATER
---------------- ------------------
               47                  83

 


SQL> select count(*) from v$session where type='USER';
COUNT(*)
----------
     49

该试图中的SESSIONS_CURRENT就等于select count(*) from v$session where TYPE = ‘USER’

v$license视图官方文档有如下描述:

This view contains information about license limits.

Column

Datatype

Description

SESSIONS_MAX

NUMBER

Maximum number of concurrent user sessions allowed for the instance

SESSIONS_WARNING

NUMBER

Warning limit for concurrent user sessions for the instance

SESSIONS_CURRENT

NUMBER

Current number of concurrent user sessions

SESSIONS_HIGHWATER

NUMBER

Highest number of concurrent user sessions since the instance started

USERS_MAX

NUMBER

Maximum number of named users allowed for the database

搜索

复制



这篇关于Oracle 并发 连接数 查询的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程