I need an sqlplus script to quickly kill off all external sessions connecting to my oracle database without the supervision of and administrator.
|
|
This answer is heavily influenced by a convseration here: http://www.tek-tips.com/viewthread.cfm?qid=1395151&page=3
I skip killing sessions originating on the database server to avoid killing off Oracle's connections to itself. |
||||
|
Before killing sessions, if possible do
to stop new sessions from connecting. |
|||
|
|
|
If you want to stop new users from connecting, but allow current sessions to continue until they are inactive, you can put the database in QUIESCE mode:
From the Oracle Database Administrator's Guide:
|
|||
|
|
Try trigger on logon Insted of trying disconnect users you should not allow them to connect. There is and example of such trigger.
|
|||
|
|
I found the below snippet helpful. Taken from: http://jeromeblog-jerome.blogspot.com/2007/10/how-to-unlock-record-on-oracle.html
Then ran:
To kill individual sessions. |
|||
|
|
|
To answer the question asked, here is the most accurate SQL to accomplish the job, you can combine it with PL/SQL loop to actually run kill statements:
|
||||
|
|
|
I've been using something like this for a while to kill my sessions on a shared server. The first line of the 'where' can be removed to kill all non 'sys' sessions:
|
|||
|
|
|
I recenlty published a script to Kill all Oracle Sessions on my blog that you can check out. The key is to using the Alter System Kill Session syntax in a loop. |
|||
|
|
|
Additional info
|
|||
|
|