Skip to content

Instantly share code, notes, and snippets.

@zz
Created April 9, 2013 04:06
Show Gist options
  • Save zz/5342867 to your computer and use it in GitHub Desktop.
Save zz/5342867 to your computer and use it in GitHub Desktop.
Find oracle database session ID using OS PID
SELECT a.sid,
b.spid
FROM v$session a,
v$process b
WHERE A.paddr = b.addr
AND b.spid = 41484400;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment