﻿<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>评论: 怎么样在线创建索引或者重构索引</title>
	<link>http://www.ixdba.com/html/y2007/m07/138-index-online-rebuild.html</link>
	<description>dba on unix</description>
	<pubDate>Wed, 07 Jan 2009 02:40:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>

	<item>
		<title>作者: victor666666</title>
		<link>http://www.ixdba.com/html/y2007/m07/138-index-online-rebuild.html#comment-815</link>
		<author>victor666666</author>
		<pubDate>Fri, 13 Jul 2007 01:56:08 +0000</pubDate>
		<guid>http://www.ixdba.com/html/y2007/m07/138-index-online-rebuild.html#comment-815</guid>
					<description>如果空间不够的话，并行创建会失败，使用的空间好像不是 space * 并行度，比这个值略小，如果索引很大剩余空间又不是很多（多少算多呢？）的话会是个问题，对这个估算我没有经验，不知有人是否测试过</description>
		<content:encoded><![CDATA[<p>如果空间不够的话，并行创建会失败，使用的空间好像不是 space * 并行度，比这个值略小，如果索引很大剩余空间又不是很多（多少算多呢？）的话会是个问题，对这个估算我没有经验，不知有人是否测试过</p>
]]></content:encoded>
				</item>
	<item>
		<title>作者: wanghui</title>
		<link>http://www.ixdba.com/html/y2007/m07/138-index-online-rebuild.html#comment-821</link>
		<author>wanghui</author>
		<pubDate>Sat, 14 Jul 2007 13:48:11 +0000</pubDate>
		<guid>http://www.ixdba.com/html/y2007/m07/138-index-online-rebuild.html#comment-821</guid>
					<description>请教个问题:能否解释一下什么是"偏移膨胀"?</description>
		<content:encoded><![CDATA[<p>请教个问题:能否解释一下什么是&#8221;偏移膨胀&#8221;?</p>
]]></content:encoded>
				</item>
	<item>
		<title>作者: piner</title>
		<link>http://www.ixdba.com/html/y2007/m07/138-index-online-rebuild.html#comment-823</link>
		<author>piner</author>
		<pubDate>Mon, 16 Jul 2007 00:26:23 +0000</pubDate>
		<guid>http://www.ixdba.com/html/y2007/m07/138-index-online-rebuild.html#comment-823</guid>
					<description>[quote]请教个问题:能否解释一下什么是”偏移膨胀”?[/quote]
也与update有关系，最典型的，如果日期字段上面有一个索引，而这个日期字段经常面临这样的更新：update ... set date_field = sysdate where ...。那么，这个日期字段就会出现严重的偏移，索引也会膨胀的很大。</description>
		<content:encoded><![CDATA[<p>[quote]请教个问题:能否解释一下什么是”偏移膨胀”?[/quote]<br />
也与update有关系，最典型的，如果日期字段上面有一个索引，而这个日期字段经常面临这样的更新：update &#8230; set date_field = sysdate where &#8230;。那么，这个日期字段就会出现严重的偏移，索引也会膨胀的很大。</p>
]]></content:encoded>
				</item>
	<item>
		<title>作者: wanghui</title>
		<link>http://www.ixdba.com/html/y2007/m07/138-index-online-rebuild.html#comment-828</link>
		<author>wanghui</author>
		<pubDate>Tue, 17 Jul 2007 01:00:10 +0000</pubDate>
		<guid>http://www.ixdba.com/html/y2007/m07/138-index-online-rebuild.html#comment-828</guid>
					<description>[quote]
quote:请教个问题:能否解释一下什么是”偏移膨胀”?也与update有关系，最典型的，如果日期字段上面有一个索引，而这个日期字段经常面临这样的更新：update … set date_field = sysdate where …。那么，这个日期字段就会出现严重的偏移，索引也会膨胀的很大。
[/quote]

谢谢piner,那么在索引偏移膨胀到什么时候,才会引起level的改变呢?</description>
		<content:encoded><![CDATA[<p>[quote]<br />
quote:请教个问题:能否解释一下什么是”偏移膨胀”?也与update有关系，最典型的，如果日期字段上面有一个索引，而这个日期字段经常面临这样的更新：update … set date_field = sysdate where …。那么，这个日期字段就会出现严重的偏移，索引也会膨胀的很大。<br />
[/quote]</p>
<p>谢谢piner,那么在索引偏移膨胀到什么时候,才会引起level的改变呢?</p>
]]></content:encoded>
				</item>
	<item>
		<title>作者: piner</title>
		<link>http://www.ixdba.com/html/y2007/m07/138-index-online-rebuild.html#comment-829</link>
		<author>piner</author>
		<pubDate>Tue, 17 Jul 2007 01:15:10 +0000</pubDate>
		<guid>http://www.ixdba.com/html/y2007/m07/138-index-online-rebuild.html#comment-829</guid>
					<description>关于索引level高度,你可以参考这篇文章
http://www.eygle.com/archives/2005/02/eabtreeeeoooeie.html
如果索引是正常向右偏移,什么时候引起level的改变很不一定的。
正常的来说，就是root不能管理所有的下一级branch的时候，就面临分裂，这个时候，就会产生新的root</description>
		<content:encoded><![CDATA[<p>关于索引level高度,你可以参考这篇文章<br />
<a href="http://www.eygle.com/archives/2005/02/eabtreeeeoooeie.html" rel="nofollow">http://www.eygle.com/archives/2005/02/eabtreeeeoooeie.html</a><br />
如果索引是正常向右偏移,什么时候引起level的改变很不一定的。<br />
正常的来说，就是root不能管理所有的下一级branch的时候，就面临分裂，这个时候，就会产生新的root</p>
]]></content:encoded>
				</item>
</channel>
</rss>
