How to kill session in Oracle using command in sqlplus?

by / 2009-2010 / Published in Oracle DBA Tips

kill session

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. While you are providing remote dba services and you require to kill session then you need to perform this ask using command line only.

In which situation we need to kill session or process:

This question is raised that in under which type of situations 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 terminate session.

Kill session needed under following typical and critical circumstances:

Oracle DBA Interview Questions

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.

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.

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. In above critical situation we need to kill or terminate or murder some session or process using command line or GUI utility like OEM, TOAD etc. But command line is more easy and helpful to solve such critical situation in remote DBA support.

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#
--------- ---------
9 171
1 row selected
SQL>alter system kill session '9,171';
System altered
or you can use another technique command for killing session using "immediate" clause as following.
SQL>alter system kill session '9,171' immediate;
System altered

And will be terminated and 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.

Dbametrix is expert remote dba service provider team. Dbametrix has solid understanding to make SLA as per specification and requirement of client and end users. Dbametrix believes to provide remote dba services of database administration using SLA. Due to this reason client of Dbametrix can able to put trust on company because Dbametrix delivers cost effective remote dba plan using Service Level Agreement SLA and response time matrix.

Dbametrix is world wide leader in remote dba support. Expert remote DBA team of Dbametrix is offering high quality professional Oracle DBA support with strong response time to fulfill your SLA. Contact our sales department for more information.

Check another articles on same topic of different execution type.
How to kill session using Oracle 11g new feature::
How to kill session in Oracle RAC database::
How to kill session in Oracle using operating system commands::

TOP