Created
August 31, 2010 18:50
-
-
Save rodrigo-galba/559504 to your computer and use it in GitHub Desktop.
Select para listar usuarios conectados no oracle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT s.username, s.program, s.logon_time, s.osuser, s.machine | |
FROM v$session s, v$process p, sys.v_$sess_io si | |
WHERE s.paddr = p.addr(+) | |
AND si.sid(+) = s.sid | |
AND s.username = 'SYSPDVWEB_LANCEUNICO_TEST'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment