If you have a DBA running, you can access the view V$SESSION. A simple query like this will give you all the connected sid and their usernames:
select
substr(sid,1,5) sid,
substr(serial
substr(machine,1,6) box,
substr(username,1,10) username,
substr(osuser,1,8) os_user,
substr(program,1,30) program
from v$session
where
and type='USER'
order by username;
If you are only looking for current requests and the user / sid, you can run something like the one described here in this.
source
share