2014-09-17 13:23:48 +02:00

34 lines
929 B
SQL

col u_username head USERNAME for a23
col u_sid head SID for a14
col u_spid head SPID for a12 wrap
col u_audsid head AUDSID for 9999999999
col u_osuser head OSUSER for a16 truncate
col u_machine head MACHINE for a18 truncate
col u_program head PROGRAM for a20 truncate
col u_module head MODULE for a20 truncate
select s.username u_username, ' ''' || s.sid || ',' || s.serial# || '''' u_sid,
-- s.audsid u_audsid,
s.osuser u_osuser,
substr(s.machine,instr(s.machine,'\')) u_machine,
-- s.machine u_machine,
-- s.program u_program,
substr(s.program,instr(s.program,'(')) u_program,
module u_module,
-- p.pid,
p.spid u_spid,
-- s.sql_address,
s.sql_hash_value,
s.last_call_et lastcall,
s.status,
s.logon_time
from
v$session s,
v$process p
where
s.paddr=p.addr
--and s.type!='BACKGROUND'
--and s.status='ACTIVE'
/