Question

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

Was it helpful?

Solution

This should do the trick:

SELECT sessions_highwater FROM v$license;

OTHER TIPS

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

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top