 




<?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: synchronize jobs</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/synchronize-jobs/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/synchronize-jobs/</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: splat</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/synchronize-jobs/#comment-70946</link>
		<dc:creator>splat</dc:creator>
		<pubDate>Fri, 27 Nov 2009 16:14:18 +0000</pubDate>
		<guid isPermaLink="false">#comment-70946</guid>
		<description><![CDATA[Last time I needed to do something similar, I used a combination of the single-threaded job queue method and the data area control flag method.  This allowed me to make sure the prior job had completed normally before the next job could run (I had a section at the top of the CL to re-submit the job fifteen minutes later if the data area showed the prior job hadn&#039;t completed).]]></description>
		<content:encoded><![CDATA[<p>Last time I needed to do something similar, I used a combination of the single-threaded job queue method and the data area control flag method.  This allowed me to make sure the prior job had completed normally before the next job could run (I had a section at the top of the CL to re-submit the job fifteen minutes later if the data area showed the prior job hadn&#8217;t completed).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jwebb901</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/synchronize-jobs/#comment-43047</link>
		<dc:creator>jwebb901</dc:creator>
		<pubDate>Wed, 15 Feb 2006 10:14:52 +0000</pubDate>
		<guid isPermaLink="false">#comment-43047</guid>
		<description><![CDATA[To break your job into 4 pieces and then submit them individualy, is self defeating.........now you have all the additional overhead of the job process x 4.  One job will process faster than 4, unless of course you have a multi-processor box.]]></description>
		<content:encoded><![CDATA[<p>To break your job into 4 pieces and then submit them individualy, is self defeating&#8230;&#8230;&#8230;now you have all the additional overhead of the job process x 4.  One job will process faster than 4, unless of course you have a multi-processor box.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rolandt</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/synchronize-jobs/#comment-43048</link>
		<dc:creator>rolandt</dc:creator>
		<pubDate>Wed, 15 Feb 2006 09:19:56 +0000</pubDate>
		<guid isPermaLink="false">#comment-43048</guid>
		<description><![CDATA[If you create a jobq that only allows one job to run at a time, then submit your jobs to that queue.  The system will run the jobs in the sequence submitted, but only one at a time.]]></description>
		<content:encoded><![CDATA[<p>If you create a jobq that only allows one job to run at a time, then submit your jobs to that queue.  The system will run the jobs in the sequence submitted, but only one at a time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: saratusthra</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/synchronize-jobs/#comment-43049</link>
		<dc:creator>saratusthra</dc:creator>
		<pubDate>Wed, 08 Feb 2006 09:03:56 +0000</pubDate>
		<guid isPermaLink="false">#comment-43049</guid>
		<description><![CDATA[Not sure exactly what you want to synchronize but to avoid object locks, including DTAARAs and files, the best approach is streaming the jobs into a single-job JOBQ, which is done in the SBMJOB command. After some analysis, the jobs can be arranged sequentially in logical order before being submitted.
This way, a job will finish using objects that may be affected by the next on the queue but there will never be a conflict. 
The other way is calling the jobs in the desired order within a CL.

Hope this helps.
Good luck!]]></description>
		<content:encoded><![CDATA[<p>Not sure exactly what you want to synchronize but to avoid object locks, including DTAARAs and files, the best approach is streaming the jobs into a single-job JOBQ, which is done in the SBMJOB command. After some analysis, the jobs can be arranged sequentially in logical order before being submitted.<br />
This way, a job will finish using objects that may be affected by the next on the queue but there will never be a conflict.<br />
The other way is calling the jobs in the desired order within a CL.</p>
<p>Hope this helps.<br />
Good luck!</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.041 seconds using memcached
Object Caching 309/315 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-19 21:27:54 -->