Number of users logged in at a particular time
I am using the following query to see all the users logged in to the database:
SELECT OSUSER, USERNAME FROM V$SESSION;
The query returns a list of 3 users.
Then, when I run
SELECT COUNT(OSUSER) FROM V$SESSION;
for some reason I get 29.
Can someone please explain to me what is going on?
0