如何在 Oracle 9i 上找到高水位线(对于会话)

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/8145/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-13 16:01:49  来源:igfitidea点击:

How do I find the high water mark (for sessions) on Oracle 9i

sqloraclesessionoracle9i

提问by BIBD

How can I find the high water mark (the historical maximum number of concurrent users) in an oracle database (9i).

如何在oracle 数据库 (9i) 中找到高水位线(历史最大并发用户数

采纳答案by ninesided

This should do the trick:

这应该可以解决问题:

SELECT sessions_highwater FROM v$license;

回答by JosephStyons

select max_utilization from v$resource_limit where resource_name = 'sessions';

A good overview of Oracle system views can be found here.

可以在此处找到 Oracle 系统视图的完整概述。