|
|
|
|
How To Kill Session In Oracle Using Command In Sqlplus?Author: Dbametrix In various critical situations Oracle DBA has to decide to kill existing session or kill the background process of Oracle. At this moment remote Oracle DBA should need to terminate session/process called as murder of session. Which situation kill session or process needed: Then question is raised that in under which type of situation remote dba should need to kill session and process. We are explaining those situations and incidences of database.Some critical situation Oracle DBA should need to take decision to ternminate session. Kill session needed under following typical and critical circumstances. 1. When blocking lock occurs and other sessions are waiting to acquire a lock on same object. But blocker session doesn’t end the transaction. At this moment Remote oracle dba should need to identify blocking session and terminate it for clearing resources for other sessions. 2. When maximum connections reached error occurs. No room available for any new connection or session. At this time Remote Oracle DBA should need to kill some of idle processes from Oracle database. 3. When database found in hang status and shutdown abort command also doesn’t work, at same time Remote Dba should need to terminate instance abnormally with murdering background processes. How to kill session using command line of Oracle: Using SQL*Plus (kill session with alter system command): It is very simple way to kill session using SQL command. Just check serial no and sid (system identifier) from v$session view as follows and use “alter system kill session” with sid and serial# command. SQL>select sid,serial# from v$session where machine=’GPTWORKGROUP’; SID SERIAL# SQL> alter system kill session ‘9,171′; And terminated user session will get message in sqlplus that “your session has been killed”. We can get output of status as “killed” from v$session for terminated session. Article Source: http://www.articlesbase.com/databases-articles/how-to-kill-session-in-oracle-using-command-in-sqlplus-1914869.html About the Author Dbametrix is remote dba support service provider company. We have expert team of highly experienced remote DBA.We also offer 24*7*365 basis oracle database support with very low cost plan. You can reach to us to http://www.dbametrix.com. or check our remote service level support at http://www.dbametrix.com/remote-dba.html Related Posts Comments |