alter system kill session force

Solutions on MaxInterview for alter system kill session force by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "alter system kill session force"
Antoine
30 Nov 2019
1-- Get ORACLE Session IDs (SID and SERIAL#)
2SELECT SID, SERIAL#, STATUS, SERVER FROM V$SESSION WHERE USERNAME = '<username>';
3-- Kill session (and wait for rollback if any...)
4ALTER SYSTEM KILL SESSION 'SID,SERIAL#' IMMEDIATE;