Skip to content

Instantly share code, notes, and snippets.

@ryanthames
Created November 19, 2015 21:54
Show Gist options
  • Save ryanthames/cfe5aad4c34f06ef7dff to your computer and use it in GitHub Desktop.
Save ryanthames/cfe5aad4c34f06ef7dff to your computer and use it in GitHub Desktop.
Find out who's hogging all the connections in Oracle
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