Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: MTS oracle 8.1.7
Use v$session_connect_info to get more info about session connectivity
example:
select a.sid,substr(b.username,1,10) username,substr(a.osuser,1,10) osuser,
b.server,a.authentication_type Authentication,a.Network_Service_banner network, substr(b.program,1,15) program,substr(b.machine,1,24) machinefrom v$session_connect_info a,v$session b where a.sid=b.sid
regards
Srivenu
Received on Tue Sep 17 2002 - 00:59:00 CDT