 




<?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: Getting the number of deleted records from Physical file</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/getting-the-number-of-deleted-records-from-physical-file/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/getting-the-number-of-deleted-records-from-physical-file/</link>
	<description></description>
	<lastBuildDate>Thu, 23 May 2013 05:15:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: The Most-Watched IT Questions: October 11, 2011 - ITKE Community Blog</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/getting-the-number-of-deleted-records-from-physical-file/#comment-97650</link>
		<dc:creator>The Most-Watched IT Questions: October 11, 2011 - ITKE Community Blog</dc:creator>
		<pubDate>Tue, 11 Oct 2011 13:09:19 +0000</pubDate>
		<guid isPermaLink="false">#comment-97650</guid>
		<description><![CDATA[[...] 3. Join the discussion on getting the number of deleted records from a physical file. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] 3. Join the discussion on getting the number of deleted records from a physical file. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kaisersosa</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/getting-the-number-of-deleted-records-from-physical-file/#comment-97378</link>
		<dc:creator>kaisersosa</dc:creator>
		<pubDate>Tue, 04 Oct 2011 18:34:26 +0000</pubDate>
		<guid isPermaLink="false">#comment-97378</guid>
		<description><![CDATA[You could use the qusrmbrd api to retrieve this information.

Format xxxx0200 I believe.

John]]></description>
		<content:encoded><![CDATA[<p>You could use the qusrmbrd api to retrieve this information.</p>
<p>Format xxxx0200 I believe.</p>
<p>John</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yorkshireman</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/getting-the-number-of-deleted-records-from-physical-file/#comment-97353</link>
		<dc:creator>yorkshireman</dc:creator>
		<pubDate>Tue, 04 Oct 2011 07:03:22 +0000</pubDate>
		<guid isPermaLink="false">#comment-97353</guid>
		<description><![CDATA[In the &#039;use with caution&#039; category you may wish to read about &#039;Re-use deleted records&#039; as a file attribute.]]></description>
		<content:encoded><![CDATA[<p>In the &#8216;use with caution&#8217; category you may wish to read about &#8216;Re-use deleted records&#8217; as a file attribute.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/getting-the-number-of-deleted-records-from-physical-file/#comment-97277</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Fri, 30 Sep 2011 23:17:10 +0000</pubDate>
		<guid isPermaLink="false">#comment-97277</guid>
		<description><![CDATA[Be aware that if this programming is intended to automate RGZPFM to reorganize files with deleted records, it may be &lt;b&gt;very risky&lt;/b&gt;. It&#039;s possible that such a program should not be run.

Without being familiar with the system and with each file, there is no way to know.

Tom]]></description>
		<content:encoded><![CDATA[<p>Be aware that if this programming is intended to automate RGZPFM to reorganize files with deleted records, it may be <b>very risky</b>. It&#8217;s possible that such a program should not be run.</p>
<p>Without being familiar with the system and with each file, there is no way to know.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ankit2002</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/getting-the-number-of-deleted-records-from-physical-file/#comment-97243</link>
		<dc:creator>ankit2002</dc:creator>
		<pubDate>Fri, 30 Sep 2011 05:27:39 +0000</pubDate>
		<guid isPermaLink="false">#comment-97243</guid>
		<description><![CDATA[Thanks to all ....
this info is really helpful...
u guys are simply genius in AS400...]]></description>
		<content:encoded><![CDATA[<p>Thanks to all &#8230;.<br />
this info is really helpful&#8230;<br />
u guys are simply genius in AS400&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/getting-the-number-of-deleted-records-from-physical-file/#comment-97164</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Wed, 28 Sep 2011 21:12:56 +0000</pubDate>
		<guid isPermaLink="false">#comment-97164</guid>
		<description><![CDATA[For a specific file, simplest might simply be to use the RTVMBRD command in a CL module:&lt;pre&gt;
RTVMBRD FILE(MYLIB/MYFILE)   +
        NBRDLTRCD(&amp;NBRDLTRCD)&lt;/pre&gt;
Declare the receiver variable as *DEC (10 0).

If it&#039;s for many files, such as all files in a library, simplest is probably CharlieBrowne&#039;s suggestion.

As for explaining queries, first you should describe your programming background and also give some context on the need for handling the number of deleted records. There can be risks in giving programming advice without knowing how it will be used. If there isn&#039;t enough background knowledge, programming can mess up a system fast.

Tom]]></description>
		<content:encoded><![CDATA[<p>For a specific file, simplest might simply be to use the RTVMBRD command in a CL module:
<pre>
RTVMBRD FILE(MYLIB/MYFILE)   +
        NBRDLTRCD(&amp;NBRDLTRCD)</pre>
<p>Declare the receiver variable as *DEC (10 0).</p>
<p>If it&#8217;s for many files, such as all files in a library, simplest is probably CharlieBrowne&#8217;s suggestion.</p>
<p>As for explaining queries, first you should describe your programming background and also give some context on the need for handling the number of deleted records. There can be risks in giving programming advice without knowing how it will be used. If there isn&#8217;t enough background knowledge, programming can mess up a system fast.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: charliebrowne</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/getting-the-number-of-deleted-records-from-physical-file/#comment-97163</link>
		<dc:creator>charliebrowne</dc:creator>
		<pubDate>Wed, 28 Sep 2011 20:50:47 +0000</pubDate>
		<guid isPermaLink="false">#comment-97163</guid>
		<description><![CDATA[As Philp explained with what I suggested, you have a new file that contains the deleted record counts. You can use the file in what ever way you desire. 
If you still need assistance, you will have to give us more information as to what you are trying to do.]]></description>
		<content:encoded><![CDATA[<p>As Philp explained with what I suggested, you have a new file that contains the deleted record counts. You can use the file in what ever way you desire.<br />
If you still need assistance, you will have to give us more information as to what you are trying to do.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: philpl1jb</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/getting-the-number-of-deleted-records-from-physical-file/#comment-97161</link>
		<dc:creator>philpl1jb</dc:creator>
		<pubDate>Wed, 28 Sep 2011 20:16:37 +0000</pubDate>
		<guid isPermaLink="false">#comment-97161</guid>
		<description><![CDATA[Charlie Brown suggested using the DSPFD command to create an outfile.
Then use whatever tool you are conforatable with to view / report on the file tht you created.  One of the fields will have the text &#039;Deleted Records&#039; 
Phil]]></description>
		<content:encoded><![CDATA[<p>Charlie Brown suggested using the DSPFD command to create an outfile.<br />
Then use whatever tool you are conforatable with to view / report on the file tht you created.  One of the fields will have the text &#8216;Deleted Records&#8217;<br />
Phil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ankit2002</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/getting-the-number-of-deleted-records-from-physical-file/#comment-97158</link>
		<dc:creator>ankit2002</dc:creator>
		<pubDate>Wed, 28 Sep 2011 18:41:51 +0000</pubDate>
		<guid isPermaLink="false">#comment-97158</guid>
		<description><![CDATA[@Charlie:Please explain more abt the SQ query..

Thanks andk Regards]]></description>
		<content:encoded><![CDATA[<p>@Charlie:Please explain more abt the SQ query..</p>
<p>Thanks andk Regards</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/10 queries in 0.044 seconds using memcached
Object Caching 379/385 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-23 05:28:47 -->