-
-
Save RichVRed/8520b69251fb9f83b43f4de8a3fa4dbc to your computer and use it in GitHub Desktop.
Find out who's hogging all the connections in 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 machine, count(*) | |
| from v$session | |
| group by machine | |
| order by 2 desc; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment