 




<?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: QTEMP file not removed</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/qtemp-file-not-removed/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/qtemp-file-not-removed/</link>
	<description></description>
	<lastBuildDate>Wed, 22 May 2013 02:14:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Rpgldb</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/qtemp-file-not-removed/#comment-115788</link>
		<dc:creator>Rpgldb</dc:creator>
		<pubDate>Fri, 01 Feb 2013 16:30:58 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/qtemp-file-not-removed/#comment-115788</guid>
		<description><![CDATA[Thanks for all the responses. Yes, I knew that I could delete the file, but I was curious as to why it wasn&#039;t automatically deleted. It turns out that because I was running the job as a test I was calling the first CLP from the command line, then that CLP called the next CLP. All of this was interactive. For some reason I wasn&#039;t thinking about the fact that because I was interactive my session itself is the &quot;job&quot; and therefore the file would not be deleted while I was still on my session.Thanks again for all your input.]]></description>
		<content:encoded><![CDATA[<p>Thanks for all the responses. Yes, I knew that I could delete the file, but I was curious as to why it wasn&#8217;t automatically deleted. It turns out that because I was running the job as a test I was calling the first CLP from the command line, then that CLP called the next CLP. All of this was interactive. For some reason I wasn&#8217;t thinking about the fact that because I was interactive my session itself is the &#8220;job&#8221; and therefore the file would not be deleted while I was still on my session.Thanks again for all your input.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TomLiotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/qtemp-file-not-removed/#comment-115754</link>
		<dc:creator>TomLiotta</dc:creator>
		<pubDate>Fri, 01 Feb 2013 01:19:12 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/qtemp-file-not-removed/#comment-115754</guid>
		<description><![CDATA[&lt;EM&gt;At the end of the job stream my file is not removed.&lt;/EM&gt;
&#160;
Please define what you mean by &quot;At the end of the job stream...&quot;. There are multiple ways that your programming might run, and the different ways will have different &quot;end of job stream&quot;.
&#160;
You might call the programming directly from a command line or menu option. In that case, the end of the job stream will happen when you sign off of the interactive session.
&#160;
You might use a SBMJOB command to submit the job to &#039;batch&#039;. If so, the end of the job will happen essentially when the program ends.
&#160;
Or you might call the program remotely through the Remote Command server or as a stored procedure through the database server. If so, the end of the job will happen when that server instance ends. That might or might not coincide with the ending of your program.
&#160;
If there are any circumstances when the end of your program does not coincide with the end of the job, and you need to ensure that the file is gone, then you should use DLTF at the end of your program. Technically, whenever a resource is no longer needed, it should be deleted whether in QTEMP or not.
&#160;
Tom]]></description>
		<content:encoded><![CDATA[<p><em>At the end of the job stream my file is not removed.</em><br />
&nbsp;<br />
Please define what you mean by &#8220;At the end of the job stream&#8230;&#8221;. There are multiple ways that your programming might run, and the different ways will have different &#8220;end of job stream&#8221;.<br />
&nbsp;<br />
You might call the programming directly from a command line or menu option. In that case, the end of the job stream will happen when you sign off of the interactive session.<br />
&nbsp;<br />
You might use a SBMJOB command to submit the job to &#8216;batch&#8217;. If so, the end of the job will happen essentially when the program ends.<br />
&nbsp;<br />
Or you might call the program remotely through the Remote Command server or as a stored procedure through the database server. If so, the end of the job will happen when that server instance ends. That might or might not coincide with the ending of your program.<br />
&nbsp;<br />
If there are any circumstances when the end of your program does not coincide with the end of the job, and you need to ensure that the file is gone, then you should use DLTF at the end of your program. Technically, whenever a resource is no longer needed, it should be deleted whether in QTEMP or not.<br />
&nbsp;<br />
Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aceofdelts</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/qtemp-file-not-removed/#comment-115740</link>
		<dc:creator>aceofdelts</dc:creator>
		<pubDate>Thu, 31 Jan 2013 19:22:48 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/qtemp-file-not-removed/#comment-115740</guid>
		<description><![CDATA[Or DLTF at the start of your code (with a MONMSG)]]></description>
		<content:encoded><![CDATA[<p>Or DLTF at the start of your code (with a MONMSG)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: philpl1jb</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/qtemp-file-not-removed/#comment-115731</link>
		<dc:creator>philpl1jb</dc:creator>
		<pubDate>Thu, 31 Jan 2013 13:32:55 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/qtemp-file-not-removed/#comment-115731</guid>
		<description><![CDATA[Perhaps you should add DLTF TSS1580 at the end of your code.]]></description>
		<content:encoded><![CDATA[<p>Perhaps you should add DLTF TSS1580 at the end of your code.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/8 queries in 0.056 seconds using memcached
Object Caching 311/312 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-22 03:19:06 -->