Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Maximum number of users logged on
select count(*) from v$session;
This will have about ten connections more than the user connections(coz this
adds up the oracle processes).
You can see more detail like
select username,osuser from v$session;
HTH.
JR
![]() |
![]() |