<?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: How does the sequence cache affect performance?</title>
	<atom:link href="http://technology.amis.nl/2006/09/22/how-does-the-sequence-cache-affect-performance/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2006/09/22/how-does-the-sequence-cache-affect-performance/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-does-the-sequence-cache-affect-performance</link>
	<description></description>
	<lastBuildDate>Fri, 12 Apr 2013 10:04:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Asif Momen</title>
		<link>http://technology.amis.nl/2006/09/22/how-does-the-sequence-cache-affect-performance/#comment-3837</link>
		<dc:creator>Asif Momen</dc:creator>
		<pubDate>Sat, 01 Sep 2007 09:19:15 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1337#comment-3837</guid>
		<description><![CDATA[I have addressed a similar issue on my blog, &lt;a href=&quot;http://momendba.blogspot.com/2007/08/to-cache-or-not-to-cache-oracle.html&quot; rel=&quot;nofollow&quot;&gt; have a look at it&lt;/a&gt;. .]]></description>
		<content:encoded><![CDATA[<p>I have addressed a similar issue on my blog, <a href="http://momendba.blogspot.com/2007/08/to-cache-or-not-to-cache-oracle.html" rel="nofollow"> have a look at it</a>. .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Colin 't Hart</title>
		<link>http://technology.amis.nl/2006/09/22/how-does-the-sequence-cache-affect-performance/#comment-3836</link>
		<dc:creator>Colin 't Hart</dc:creator>
		<pubDate>Wed, 25 Oct 2006 09:25:13 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1337#comment-3836</guid>
		<description><![CDATA[Don&#039;t forget that 1 REDO block will be created for each update of the sequence, which occurs every cachesize entries.

So if you are APPEND INSERTING 10s of millions of records and have a cachesize of 20 then you will still be generating quite a bit of REDO

Cheers,

Colin]]></description>
		<content:encoded><![CDATA[<p>Don&#8217;t forget that 1 REDO block will be created for each update of the sequence, which occurs every cachesize entries.</p>
<p>So if you are APPEND INSERTING 10s of millions of records and have a cachesize of 20 then you will still be generating quite a bit of REDO</p>
<p>Cheers,</p>
<p>Colin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mathew Butler</title>
		<link>http://technology.amis.nl/2006/09/22/how-does-the-sequence-cache-affect-performance/#comment-3835</link>
		<dc:creator>Mathew Butler</dc:creator>
		<pubDate>Mon, 25 Sep 2006 13:37:56 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1337#comment-3835</guid>
		<description><![CDATA[Caching makes a significant different to batch data loads. Its a good tool to have when trying to tune a third party app without changing code - if the app is batch. I&#039;ve found that a cache size of about 100 is optimal. Also coding the sequence directly into the DML cuts down the work to do. eg: insert into t ( col1 ) values ( my_seq.nextval ) returning col1 into l_my_col1; Of course, you can see greater benefits if the batch can be bulked up ie: using an insert into select ...from.... Mathew Butler]]></description>
		<content:encoded><![CDATA[<p>Caching makes a significant different to batch data loads. Its a good tool to have when trying to tune a third party app without changing code &#8211; if the app is batch. I&#8217;ve found that a cache size of about 100 is optimal. Also coding the sequence directly into the DML cuts down the work to do. eg: insert into t ( col1 ) values ( my_seq.nextval ) returning col1 into l_my_col1; Of course, you can see greater benefits if the batch can be bulked up ie: using an insert into select &#8230;from&#8230;. Mathew Butler</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Wolf</title>
		<link>http://technology.amis.nl/2006/09/22/how-does-the-sequence-cache-affect-performance/#comment-3834</link>
		<dc:creator>Patrick Wolf</dc:creator>
		<pubDate>Fri, 22 Sep 2006 16:10:19 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1337#comment-3834</guid>
		<description><![CDATA[Hi,

I think the cache can be very usefull if you have a RAC environment, because otherwise the different instances are playing ping-pong with the sequence dictionary tables all the time.

Patrick]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I think the cache can be very usefull if you have a RAC environment, because otherwise the different instances are playing ping-pong with the sequence dictionary tables all the time.</p>
<p>Patrick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Sinke</title>
		<link>http://technology.amis.nl/2006/09/22/how-does-the-sequence-cache-affect-performance/#comment-3833</link>
		<dc:creator>Patrick Sinke</dc:creator>
		<pubDate>Fri, 22 Sep 2006 13:28:53 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1337#comment-3833</guid>
		<description><![CDATA[I think there is an other optimal setting for each situations and each type of DML. My assumption was that cache size should be set just above the expected number of sequence calls within a large batch or procedure.
Testing some in-between values would yield a more reliable result of this test. Then we could also see if the relation is lineair or exponential, for instance.]]></description>
		<content:encoded><![CDATA[<p>I think there is an other optimal setting for each situations and each type of DML. My assumption was that cache size should be set just above the expected number of sequence calls within a large batch or procedure.<br />
Testing some in-between values would yield a more reliable result of this test. Then we could also see if the relation is lineair or exponential, for instance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl r.</title>
		<link>http://technology.amis.nl/2006/09/22/how-does-the-sequence-cache-affect-performance/#comment-3832</link>
		<dc:creator>Karl r.</dc:creator>
		<pubDate>Fri, 22 Sep 2006 12:54:24 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1337#comment-3832</guid>
		<description><![CDATA[hi,
interesting would be how good/bad the performance is if you cache 1000 Vals.
Sure the dictionary mut be updated a lot more but i am still interested in.

Karl]]></description>
		<content:encoded><![CDATA[<p>hi,<br />
interesting would be how good/bad the performance is if you cache 1000 Vals.<br />
Sure the dictionary mut be updated a lot more but i am still interested in.</p>
<p>Karl</p>
]]></content:encoded>
	</item>
</channel>
</rss>
