Hi Guru's
I wanted to know one thing, How to find out how many users/clients are requesting/retring for the connection to the database at a particular time?
Thanks in advance,
Shailendra
Printable View
Hi Guru's
I wanted to know one thing, How to find out how many users/clients are requesting/retring for the connection to the database at a particular time?
Thanks in advance,
Shailendra
Enable Auditing for user logins
Hi
You can try this
at time t1
select name,value from v$sysstat
where name like 'logons current'
at time t2
the difference will be the answer you r lookin for
regards
Hrishy