0% found this document useful (0 votes)
78 views2 pages

Oracle

The document contains output from multiple SQL queries on the v$session table in an Oracle database. The queries show session information for the user 'Dilip', including username, OS username, status, type, and additionally module in the later queries. Across 11 sessions, most users are shown to be inactive, with the module Axpert 9.5.exe listed for most sessions.

Uploaded by

Biplab Parida
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
78 views2 pages

Oracle

The document contains output from multiple SQL queries on the v$session table in an Oracle database. The queries show session information for the user 'Dilip', including username, OS username, status, type, and additionally module in the later queries. Across 11 sessions, most users are shown to be inactive, with the module Axpert 9.5.exe listed for most sessions.

Uploaded by

Biplab Parida
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

select username,osuser,status,type

from v$session
where osuser='pradnya';

USERNAME OSUSER STATUS TYPE


------------------------------ ------------------------------ -------- ----------
CORPORATE Dilip ACTIVE USER
CORPORATE Dilip INACTIVE USER
CORPORATE Dilip INACTIVE USER
CORPORATE Dilip ACTIVE USER
CORPORATE Dilip INACTIVE USER
CORPORATE Dilip ACTIVE USER
CORPORATE Dilip INACTIVE USER
CORPORATE Dilip ACTIVE USER
CORPORATE Dilip INACTIVE USER
CORPORATE Dilip INACTIVE USER
CORPORATE Dilip INACTIVE USER

select username,osuser,status,type,module
from v$session
where osuser='Dilip';

USERNAME OSUSER STATUS TYPE


MODULE
------------------------------ ------------------------------ -------- ----------
----------------------------------------------------------------
CORPORATE Dilip ACTIVE USER
Axpert 9.5.exe
CORPORATE Dilip INACTIVE USER
Axpert 9.5.exe
CORPORATE Dilip INACTIVE USER
Newaco Live.exe
CORPORATE Dilip ACTIVE USER
Axpert 9.5.exe
CORPORATE Dilip INACTIVE USER
Axpert 9.5.exe
CORPORATE Dilip ACTIVE USER
Axpert 9.5.exe
CORPORATE Dilip INACTIVE USER
Axpert 9.5.exe
CORPORATE Dilip ACTIVE USER
Axpert 9.5.exe
CORPORATE Dilip INACTIVE USER
Axpert 9.5.exe
CORPORATE Dilip INACTIVE USER
Axpert 9.5.exe
CORPORATE Dilip INACTIVE USER
Axpert 9.5.exe

col module for a25


select sid,serial#,username,osuser,status,type,module,logon_time
from v$session
where osuser='Dilip';
SID SERIAL# USERNAME OSUSER
STATUS TYPE MODULE LOGON_TIM
---------- ---------- ------------------------------ ------------------------------
-------- ---------- ------------------------- ---------
16 50042 CORPORATE Dilip
ACTIVE USER Axpert 9.5.exe 04-JUL-16
522 51073 CORPORATE Dilip
INACTIVE USER Axpert 9.5.exe 04-JUL-16
1023 23235 CORPORATE Dilip
INACTIVE USER Newaco Live.exe 04-JUL-16
1024 46279 CORPORATE Dilip
ACTIVE USER Axpert 9.5.exe 04-JUL-16
1025 6923 CORPORATE Dilip
INACTIVE USER Axpert 9.5.exe 04-JUL-16
1527 17845 CORPORATE Dilip
ACTIVE USER Axpert 9.5.exe 04-JUL-16
1533 11003 CORPORATE Dilip
INACTIVE USER Axpert 9.5.exe 04-JUL-16
2037 7354 CORPORATE Dilip
ACTIVE USER Axpert 9.5.exe 04-JUL-16
2038 49595 CORPORATE Dilip
INACTIVE USER Axpert 9.5.exe 04-JUL-16
2039 46615 CORPORATE Dilip
INACTIVE USER Axpert 9.5.exe 04-JUL-16
2539 7273 CORPORATE Dilip
INACTIVE USER Axpert 9.5.exe 04-JUL-16

You might also like