top of page
Find Current Session SID in Oracle
Identify your current session's SID in Oracle.
Sometimes when you are connected to Oracle database, you might need to find your own session SID and serial number. Below are the two queries that can help you find SID and serial number of current sessions that you connected with
Find SID in normal database
In a normal standalone database, use below query
select sid from v$mystat where rownum=1;
Find SID in RAC database
In a RAC database, you must also know the details of the instance that you are connected with. Below query will give you SID, serial # along with the instance number
SELECT SID, SERIAL#,inst_id
FROM GV$SESSION
WHERE sid=(select sid from v$mystat where rownum=1);
bottom of page