<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Killing an Oracle Job Dead</title>
	<atom:link href="http://www.pythian.com/news/1742/killing-an-oracle-job-dead/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pythian.com/news/1742/killing-an-oracle-job-dead/</link>
	<description>News and views from Pythian DBAs</description>
	<lastBuildDate>Fri, 10 Feb 2012 13:01:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Lukas</title>
		<link>http://www.pythian.com/news/1742/killing-an-oracle-job-dead/#comment-396613</link>
		<dc:creator>Lukas</dc:creator>
		<pubDate>Tue, 05 Jan 2010 14:38:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/news/?p=1742#comment-396613</guid>
		<description>Hi Bede,

how about checking the dba_jobs_running for SID and INSTANCE columns which will give you the SID and INST_ID which you can use to lookup gv$session and kill the right session.

Regards,
Lukas</description>
		<content:encoded><![CDATA[<p>Hi Bede,</p>
<p>how about checking the dba_jobs_running for SID and INSTANCE columns which will give you the SID and INST_ID which you can use to lookup gv$session and kill the right session.</p>
<p>Regards,<br />
Lukas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BEDE</title>
		<link>http://www.pythian.com/news/1742/killing-an-oracle-job-dead/#comment-396609</link>
		<dc:creator>BEDE</dc:creator>
		<pubDate>Tue, 05 Jan 2010 14:15:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/news/?p=1742#comment-396609</guid>
		<description>Not seen this so far.
Yet I have another problem: how to programatically kill the job sessions on a cluster? 
Meaning: I have a procedure that receives the job_id as a param and does an execute immediate &#039;alter system kill session ...&#039;. 
The problem is that, on a cluster, the proc may be running on a different node than that the hob session runs. 
What do you think about this?</description>
		<content:encoded><![CDATA[<p>Not seen this so far.<br />
Yet I have another problem: how to programatically kill the job sessions on a cluster?<br />
Meaning: I have a procedure that receives the job_id as a param and does an execute immediate &#8216;alter system kill session &#8230;&#8217;.<br />
The problem is that, on a cluster, the proc may be running on a different node than that the hob session runs.<br />
What do you think about this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reci</title>
		<link>http://www.pythian.com/news/1742/killing-an-oracle-job-dead/#comment-359469</link>
		<dc:creator>Reci</dc:creator>
		<pubDate>Mon, 18 May 2009 15:38:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/news/?p=1742#comment-359469</guid>
		<description>Lukas,

My Corporation recently had an issue with a job we could not kill via the OS or database process.  I just happened to try running multiple commits and bingo! they were gone.  

I was looking for some documentation to help explain what happened and read your article. 

Thanks, for putting it out there.  It was as simple as commits:)

Reci</description>
		<content:encoded><![CDATA[<p>Lukas,</p>
<p>My Corporation recently had an issue with a job we could not kill via the OS or database process.  I just happened to try running multiple commits and bingo! they were gone.  </p>
<p>I was looking for some documentation to help explain what happened and read your article. </p>
<p>Thanks, for putting it out there.  It was as simple as commits:)</p>
<p>Reci</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lukas Vysusil</title>
		<link>http://www.pythian.com/news/1742/killing-an-oracle-job-dead/#comment-352748</link>
		<dc:creator>Lukas Vysusil</dc:creator>
		<pubDate>Wed, 01 Apr 2009 11:37:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/news/?p=1742#comment-352748</guid>
		<description>Hi Vlado, let me clarify, because that part is not too clear. 
In the past I was using DBMS_JOB, hence I had to be logged in as the owner of the job to be able to manipulate it using DBMS_JOB.REMOVE. After removing the job I reconnected using &#039;connect / as sysdba&#039; in order to be able to issue &#039;alter system kill ...&#039;. Once you reconnect or exit sqlplus session it will autocommit.

If you use DBMS_IJOB then you do not need to switch between sessions because you can do everything as SYS from single session.

Lukas</description>
		<content:encoded><![CDATA[<p>Hi Vlado, let me clarify, because that part is not too clear.<br />
In the past I was using DBMS_JOB, hence I had to be logged in as the owner of the job to be able to manipulate it using DBMS_JOB.REMOVE. After removing the job I reconnected using &#8216;connect / as sysdba&#8217; in order to be able to issue &#8216;alter system kill &#8230;&#8217;. Once you reconnect or exit sqlplus session it will autocommit.</p>
<p>If you use DBMS_IJOB then you do not need to switch between sessions because you can do everything as SYS from single session.</p>
<p>Lukas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vlado</title>
		<link>http://www.pythian.com/news/1742/killing-an-oracle-job-dead/#comment-352688</link>
		<dc:creator>Vlado</dc:creator>
		<pubDate>Wed, 01 Apr 2009 00:08:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/news/?p=1742#comment-352688</guid>
		<description>Can you elaborate on what you meant by &quot;...switched to the SYS user in order to kill sessions, so it was autocommited upon reconnect...&quot;, especially the autocommit part?</description>
		<content:encoded><![CDATA[<p>Can you elaborate on what you meant by &#8220;&#8230;switched to the SYS user in order to kill sessions, so it was autocommited upon reconnect&#8230;&#8221;, especially the autocommit part?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: james koopmann</title>
		<link>http://www.pythian.com/news/1742/killing-an-oracle-job-dead/#comment-352600</link>
		<dc:creator>james koopmann</dc:creator>
		<pubDate>Tue, 31 Mar 2009 02:26:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/news/?p=1742#comment-352600</guid>
		<description>thanks for the mention. my Killing the Oracle DBMS_JOB is at http://it.toolbox.com/blogs/database-solutions/killing-the-oracle-dbms_job-6498
cheers,
james</description>
		<content:encoded><![CDATA[<p>thanks for the mention. my Killing the Oracle DBMS_JOB is at <a href="http://it.toolbox.com/blogs/database-solutions/killing-the-oracle-dbms_job-6498" rel="nofollow">http://it.toolbox.com/blogs/database-solutions/killing-the-oracle-dbms_job-6498</a><br />
cheers,<br />
james</p>
]]></content:encoded>
	</item>
</channel>
</rss>

