Oracle Kill Session Scripts -1

Hi, Sometimes application developers or client offers you to kill any session or sessions group like SQL Net Client, or JDBC Client sessions or RMAN sessions. You need to find session SID and SERIAL# with below script. select s.SID,s.SERIAL#,S.USERNAME from v$session s where s.sid=63;   You can kill any session with its SID and SERIAL# … Continue reading Oracle Kill Session Scripts -1