vote up 1 vote down star

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

flag

2 Answers

vote up 2 vote down check

This should do the trick:

SELECT sessions_highwater FROM v$license;
link|flag
vote up 0 vote down
select max_utilization from v$resource_limit where resource_name = 'sessions';

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

link|flag
Doesn't this just tell me the maximum number of connections that I will allow on the database, not the maximum that it has achieved??? – CodeSlave Sep 15 '08 at 14:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.