Collect concurrent user details
Hi All
Please update me query to collect information regarding current number of concurrent user, who logged in EBS and active.
I'm using below two query.
Select count(*) from v$session where username is not null;
select count(*),sum(decode(status, 'ACTIVE',1,0)) from v$session where type= 'USER' and status='ACTIVE';
Regards
Brijesh Dubey
0