 




<?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: RPG Program Files in Update Mode</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/files-in-update-mode/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/files-in-update-mode/</link>
	<description></description>
	<lastBuildDate>Sun, 19 May 2013 03:14:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: The Most-Watched IT Questions: February 8, 2011 - ITKE Community Blog</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/files-in-update-mode/#comment-87709</link>
		<dc:creator>The Most-Watched IT Questions: February 8, 2011 - ITKE Community Blog</dc:creator>
		<pubDate>Tue, 08 Feb 2011 06:50:06 +0000</pubDate>
		<guid isPermaLink="false">#comment-87709</guid>
		<description><![CDATA[[...] 8. CharlieBrowne and TomLiotta team up again to help Sangay with a question regarding RPG program files in update mode. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] 8. CharlieBrowne and TomLiotta team up again to help Sangay with a question regarding RPG program files in update mode. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/files-in-update-mode/#comment-87241</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Fri, 28 Jan 2011 21:54:16 +0000</pubDate>
		<guid isPermaLink="false">#comment-87241</guid>
		<description><![CDATA[&lt;i&gt;ODP’s will not be shared between these two programs unless it is done in CL...&lt;/i&gt;

That depends on how the file is created. Usually, the default on the create is SHARE(*NO), but that can be changed when the command is run or by running CHGPF SHARE(*YES) or CHGLF SHARE(*YES).

If the already has the SHARE(*YES) attribute, then you&#039;d need to run an override to &lt;i&gt;avoid&lt;/i&gt; sharing when it&#039;s unwanted.

Objects should be created with the attributes they should have normally. Overrides should only be used for exceptions.

Tom]]></description>
		<content:encoded><![CDATA[<p><i>ODP’s will not be shared between these two programs unless it is done in CL&#8230;</i></p>
<p>That depends on how the file is created. Usually, the default on the create is SHARE(*NO), but that can be changed when the command is run or by running CHGPF SHARE(*YES) or CHGLF SHARE(*YES).</p>
<p>If the already has the SHARE(*YES) attribute, then you&#8217;d need to run an override to <i>avoid</i> sharing when it&#8217;s unwanted.</p>
<p>Objects should be created with the attributes they should have normally. Overrides should only be used for exceptions.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sangay</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/files-in-update-mode/#comment-87197</link>
		<dc:creator>sangay</dc:creator>
		<pubDate>Fri, 28 Jan 2011 05:48:33 +0000</pubDate>
		<guid isPermaLink="false">#comment-87197</guid>
		<description><![CDATA[how Force write ratio will help?

Thanks]]></description>
		<content:encoded><![CDATA[<p>how Force write ratio will help?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: charliebrowne</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/files-in-update-mode/#comment-87196</link>
		<dc:creator>charliebrowne</dc:creator>
		<pubDate>Fri, 28 Jan 2011 05:42:57 +0000</pubDate>
		<guid isPermaLink="false">#comment-87196</guid>
		<description><![CDATA[You can change the Force Write Ratio to 1]]></description>
		<content:encoded><![CDATA[<p>You can change the Force Write Ratio to 1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sangay</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/files-in-update-mode/#comment-87190</link>
		<dc:creator>sangay</dc:creator>
		<pubDate>Fri, 28 Jan 2011 03:55:23 +0000</pubDate>
		<guid isPermaLink="false">#comment-87190</guid>
		<description><![CDATA[Ye thats what i am also thinking about. P2 will recieve the old record since the ODP&#039;s will not be shared between these two programs unless it is done in CL which calls P1.]]></description>
		<content:encoded><![CDATA[<p>Ye thats what i am also thinking about. P2 will recieve the old record since the ODP&#8217;s will not be shared between these two programs unless it is done in CL which calls P1.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/files-in-update-mode/#comment-87168</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Thu, 27 Jan 2011 21:59:07 +0000</pubDate>
		<guid isPermaLink="false">#comment-87168</guid>
		<description><![CDATA[&lt;i&gt;P1 updates a particular record (say using CHAIN). Now P2 also want to update the same record (Say using CHAIN). will P2 recieve a new data or old data from File FILE1?&lt;/i&gt;

As long as P1 has completed the update operation, P2 should get the updated record.

I&#039;ve never tried, but it &lt;i&gt;might&lt;/i&gt; be possible to cause P2 to get the old record by ensuring separate ODPs, calling P2 before a COMMIT, overriding for sequential blocking so that the record CHAINed to in P2 was already in the P2 buffer due to a prior positioning and possibly other deliberate code structures; but I&#039;d expect it to take almost deliberate actions.

If P1 called P2 before completing the update, then P2 should run into a record lock condition.

Tom]]></description>
		<content:encoded><![CDATA[<p><i>P1 updates a particular record (say using CHAIN). Now P2 also want to update the same record (Say using CHAIN). will P2 recieve a new data or old data from File FILE1?</i></p>
<p>As long as P1 has completed the update operation, P2 should get the updated record.</p>
<p>I&#8217;ve never tried, but it <i>might</i> be possible to cause P2 to get the old record by ensuring separate ODPs, calling P2 before a COMMIT, overriding for sequential blocking so that the record CHAINed to in P2 was already in the P2 buffer due to a prior positioning and possibly other deliberate code structures; but I&#8217;d expect it to take almost deliberate actions.</p>
<p>If P1 called P2 before completing the update, then P2 should run into a record lock condition.</p>
<p>Tom</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 6/9 queries in 0.016 seconds using memcached
Object Caching 338/341 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-19 10:59:48 -->