Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save RichVRed/8520b69251fb9f83b43f4de8a3fa4dbc to your computer and use it in GitHub Desktop.

Select an option

Save RichVRed/8520b69251fb9f83b43f4de8a3fa4dbc 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