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

2

7

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

Heyerdahl answered 11/8, 2008 at 19:53 Comment(0)
C
5

This should do the trick:

SELECT sessions_highwater FROM v$license;
Chanukah answered 11/8, 2008 at 20:5 Comment(0)
S
1
select max_utilization from v$resource_limit where resource_name = 'sessions';

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

Sucre answered 11/8, 2008 at 20:9 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.