How to kill the session

Ij
Posted by Ij under Oracle category on | Points: 40 | Views : 1071
all session information stores in v$session table,from this table we need to extract SID and SSID of perticular session as fallows

select* from v$session where username='idrs';


alter system kill session '70,28929';

Comments or Responses

Login to post response