<?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>
	「Oracle 10g Redo的增强」的评论	</title>
	<atom:link href="https://dbtan.com/2009/12/oracle-10g-redo-enhancement.html/feed" rel="self" type="application/rss+xml" />
	<link>https://dbtan.com/2009/12/oracle-10g-redo-enhancement.html</link>
	<description>dbtan 的生活、Oracle 及 Linux 等的学习笔记、观点。      说，永远易于做！</description>
	<lastBuildDate>Mon, 29 Sep 2014 09:51:32 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		评论者：zengbo		</title>
		<link>https://dbtan.com/2009/12/oracle-10g-redo-enhancement.html/comment-page-1#comment-31256</link>

		<dc:creator><![CDATA[zengbo]]></dc:creator>
		<pubDate>Mon, 29 Sep 2014 09:51:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbtan.com/2009/12/oracle-10g-redo-enhancement.html#comment-31256</guid>

					<description><![CDATA[我有一个问题，就是10g以后的版本，隐含参数_log_parallelism_max参数大于1时，redo 日志会出现以下现象：
lgwr会发生多线程写logfile的现象，这样导致logfile中会出现后面的scn大于前面的scn,比如：
scn为100.... 187 ...200 ...211,156,157,212 ...

请帮忙解释，谢谢！可以发送到我邮箱]]></description>
			<content:encoded><![CDATA[<p>我有一个问题，就是10g以后的版本，隐含参数_log_parallelism_max参数大于1时，redo 日志会出现以下现象：<br />
lgwr会发生多线程写logfile的现象，这样导致logfile中会出现后面的scn大于前面的scn,比如：<br />
scn为100.... 187 ...200 ...211,156,157,212 ...</p>
<p>请帮忙解释，谢谢！可以发送到我邮箱</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：anriqing		</title>
		<link>https://dbtan.com/2009/12/oracle-10g-redo-enhancement.html/comment-page-1#comment-15654</link>

		<dc:creator><![CDATA[anriqing]]></dc:creator>
		<pubDate>Sun, 25 Aug 2013 06:08:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbtan.com/2009/12/oracle-10g-redo-enhancement.html#comment-15654</guid>

					<description><![CDATA[补充：private strand一般大小在64KB-128KB之间我在tanel poderd的Performance and Scalability Improvements in Oracle 10g and 11g中也看到了，但仍不确定其来源。]]></description>
			<content:encoded><![CDATA[<p>补充：private strand一般大小在64KB-128KB之间我在tanel poderd的Performance and Scalability Improvements in Oracle 10g and 11g中也看到了，但仍不确定其来源。</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：anriqing		</title>
		<link>https://dbtan.com/2009/12/oracle-10g-redo-enhancement.html/comment-page-1#comment-15653</link>

		<dc:creator><![CDATA[anriqing]]></dc:creator>
		<pubDate>Sun, 25 Aug 2013 05:59:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbtan.com/2009/12/oracle-10g-redo-enhancement.html#comment-15653</guid>

					<description><![CDATA[非常好的文章。我有疑问如下，还请作者讲解一下：
1. &quot;在PVRS机制下，数据库可以在共享池中分配大量的小的私有内存，通常每个大小在64～128KB左右&quot;
请问这个数据是从哪里得到的，我看过其他一些介绍private strand的文章，都没有提到过这样的数据，我在11gR2的一个环境下观察到的数据是129KB(加上4KB管理数据，一个private strand的大小是133KB)；
2. “当数据库中特定类型的小事务开始时会被绑定到独立且空闲PVRS”
请问这里的特定类型的小事务可以具体介绍一下吗？我在asktom上看到这样的回答，If your transaction is relatively small, you&#039;ll generate all of your redo into a private strand (which increases concurrency, instead of fighting to get into the redo log buffer in general) and when you commit, you write your private strand out. If your transaction gets large - you&#039;ll end up going &quot;public&quot; into the greater redo log buffer in general. 
3. 既然private strand仅适用于小事务，那么较大的事务在生成redo entry时，仍需要在server process的PGA内生成，然后拷贝到log buffer吗？]]></description>
			<content:encoded><![CDATA[<p>非常好的文章。我有疑问如下，还请作者讲解一下：<br />
1. "在PVRS机制下，数据库可以在共享池中分配大量的小的私有内存，通常每个大小在64～128KB左右"<br />
请问这个数据是从哪里得到的，我看过其他一些介绍private strand的文章，都没有提到过这样的数据，我在11gR2的一个环境下观察到的数据是129KB(加上4KB管理数据，一个private strand的大小是133KB)；<br />
2. “当数据库中特定类型的小事务开始时会被绑定到独立且空闲PVRS”<br />
请问这里的特定类型的小事务可以具体介绍一下吗？我在asktom上看到这样的回答，If your transaction is relatively small, you'll generate all of your redo into a private strand (which increases concurrency, instead of fighting to get into the redo log buffer in general) and when you commit, you write your private strand out. If your transaction gets large - you'll end up going "public" into the greater redo log buffer in general.<br />
3. 既然private strand仅适用于小事务，那么较大的事务在生成redo entry时，仍需要在server process的PGA内生成，然后拷贝到log buffer吗？</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
