Created
January 21, 2014 10:22
-
-
Save joseporiol/8537594 to your computer and use it in GitHub Desktop.
Oracle SQL query that show the opened connections group by the program that opens the connection.
This file contains 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 program application, COUNT (program) Numero_Sesiones | |
FROM v$session | |
GROUP BY program | |
ORDER BY Numero_Sesiones DESC; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment