<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Difference Between Index Rebuild and Index Reorganize Explained with T-SQL Script</title>
	<atom:link href="http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Thu, 09 Feb 2012 19:36:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Shalabh Gupta</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-244513</link>
		<dc:creator><![CDATA[Shalabh Gupta]]></dc:creator>
		<pubDate>Fri, 27 Jan 2012 11:56:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-244513</guid>
		<description><![CDATA[Hi Pinal,

My Full-Text search takes a long time to perform the search operation. The table on which the Full Text is enabled, contains 97 Lac records and every 1 hour 3 to 4k records are imported to this table.

During the FTS, CPU shows 100% performance on the database server with high CPU consumption of this process: MSFTESQL

The rebuilt on the full text catalog is performed every night. I also tried to do a reorganize every-night but it did&#039;nt helped me.

Could you please guide me what should I do in this case and will Rebuild or Reorganize of FTI , boost performance.]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>My Full-Text search takes a long time to perform the search operation. The table on which the Full Text is enabled, contains 97 Lac records and every 1 hour 3 to 4k records are imported to this table.</p>
<p>During the FTS, CPU shows 100% performance on the database server with high CPU consumption of this process: MSFTESQL</p>
<p>The rebuilt on the full text catalog is performed every night. I also tried to do a reorganize every-night but it did&#8217;nt helped me.</p>
<p>Could you please guide me what should I do in this case and will Rebuild or Reorganize of FTI , boost performance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sharjeel</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-241337</link>
		<dc:creator><![CDATA[sharjeel]]></dc:creator>
		<pubDate>Fri, 20 Jan 2012 14:53:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-241337</guid>
		<description><![CDATA[i am confused, when i used penal command on adventurework Db its works fine.
but when i used the following on sql2005 enviornment it always give me error, please advise


USE DB;
GO
ALTER INDEX ALL ON dbo.mytable REBUILD
GO


error:

Msg 156, Level 15, State 1, Line 1
Incorrect syntax near the keyword &#039;INDEX&#039;.]]></description>
		<content:encoded><![CDATA[<p>i am confused, when i used penal command on adventurework Db its works fine.<br />
but when i used the following on sql2005 enviornment it always give me error, please advise</p>
<p>USE DB;<br />
GO<br />
ALTER INDEX ALL ON dbo.mytable REBUILD<br />
GO</p>
<p>error:</p>
<p>Msg 156, Level 15, State 1, Line 1<br />
Incorrect syntax near the keyword &#8216;INDEX&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hemant Korde</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-236028</link>
		<dc:creator><![CDATA[Hemant Korde]]></dc:creator>
		<pubDate>Thu, 12 Jan 2012 13:02:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-236028</guid>
		<description><![CDATA[Hi Pinal,

Thank you. 

Can you please explain the conditions under which SQL Optimizer uses a wrong index than what it should logically? For example, using a clustered index scan instead of using a NC which was created for that particular column. For example, I am searching for VENDORS and there is a NC index on VENDORS but SQL is using a Clustered INdex that is on an identity column.

Hemant]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>Thank you. </p>
<p>Can you please explain the conditions under which SQL Optimizer uses a wrong index than what it should logically? For example, using a clustered index scan instead of using a NC which was created for that particular column. For example, I am searching for VENDORS and there is a NC index on VENDORS but SQL is using a Clustered INdex that is on an identity column.</p>
<p>Hemant</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Non-Clustered Index and Automatic Rebuild &#8211; Quiz &#8211; Puzzle &#8211; 11 of 31 &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-235692</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Non-Clustered Index and Automatic Rebuild &#8211; Quiz &#8211; Puzzle &#8211; 11 of 31 &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Thu, 12 Jan 2012 01:31:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-235692</guid>
		<description><![CDATA[[...] Server Interview Questions and Answers ISBN: 1466405643 Page#67 Difference Between Index Rebuild and Index Reorganize Explained with T-SQL Script Fragmentation – Detect Fragmentation and Eliminate Fragmentation Generate Report for Index [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Server Interview Questions and Answers ISBN: 1466405643 Page#67 Difference Between Index Rebuild and Index Reorganize Explained with T-SQL Script Fragmentation – Detect Fragmentation and Eliminate Fragmentation Generate Report for Index [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Reyes</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-224602</link>
		<dc:creator><![CDATA[Ben Reyes]]></dc:creator>
		<pubDate>Fri, 23 Dec 2011 19:24:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-224602</guid>
		<description><![CDATA[The whitepaper on sql server 2000 indexing suggests ignoring anything under 1000 pages.]]></description>
		<content:encoded><![CDATA[<p>The whitepaper on sql server 2000 indexing suggests ignoring anything under 1000 pages.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Reyes</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-224594</link>
		<dc:creator><![CDATA[Ben Reyes]]></dc:creator>
		<pubDate>Fri, 23 Dec 2011 19:08:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-224594</guid>
		<description><![CDATA[What size are the tables?

Small tables (for me around 200 pages) will always have high fragmentation.  For these tables you don&#039;t really gain much by having an index on them anyway.]]></description>
		<content:encoded><![CDATA[<p>What size are the tables?</p>
<p>Small tables (for me around 200 pages) will always have high fragmentation.  For these tables you don&#8217;t really gain much by having an index on them anyway.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zahid khan</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-223690</link>
		<dc:creator><![CDATA[zahid khan]]></dc:creator>
		<pubDate>Thu, 22 Dec 2011 13:29:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-223690</guid>
		<description><![CDATA[I have set up maintenance Plan for Rebuilding Indexes on a nightly basis. It  runs successfully, but does not de-fragment the indexes. I have had a discussion  on this with Microsoft Engineers. and They informed me that Rebuilding Indexes with Maintenance Plan sometimes does not de-fragment  the indexes. But I am not happy with this statement. What do you think of it?]]></description>
		<content:encoded><![CDATA[<p>I have set up maintenance Plan for Rebuilding Indexes on a nightly basis. It  runs successfully, but does not de-fragment the indexes. I have had a discussion  on this with Microsoft Engineers. and They informed me that Rebuilding Indexes with Maintenance Plan sometimes does not de-fragment  the indexes. But I am not happy with this statement. What do you think of it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dallara</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-197006</link>
		<dc:creator><![CDATA[Dallara]]></dc:creator>
		<pubDate>Wed, 16 Nov 2011 16:14:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-197006</guid>
		<description><![CDATA[Is there any metadata info which tells when a INDEX was last reorganised or rebuilt?]]></description>
		<content:encoded><![CDATA[<p>Is there any metadata info which tells when a INDEX was last reorganised or rebuilt?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: prabhu</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-192108</link>
		<dc:creator><![CDATA[prabhu]]></dc:creator>
		<pubDate>Thu, 10 Nov 2011 06:58:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-192108</guid>
		<description><![CDATA[How to Change collation on master database, SQL server that has different collation on master and user database]]></description>
		<content:encoded><![CDATA[<p>How to Change collation on master database, SQL server that has different collation on master and user database</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Onke</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-178828</link>
		<dc:creator><![CDATA[Onke]]></dc:creator>
		<pubDate>Fri, 14 Oct 2011 13:33:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-178828</guid>
		<description><![CDATA[This is very helpful but when I try to defrag my indexes, nothing happens...I drop and recreate them and they are still fragmented...and yes I have the update statistics command after rebuilding or reorganizing...if any of you guys know why this is happening, please let me know.]]></description>
		<content:encoded><![CDATA[<p>This is very helpful but when I try to defrag my indexes, nothing happens&#8230;I drop and recreate them and they are still fragmented&#8230;and yes I have the update statistics command after rebuilding or reorganizing&#8230;if any of you guys know why this is happening, please let me know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AJITESH MALHOTRA</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-177074</link>
		<dc:creator><![CDATA[AJITESH MALHOTRA]]></dc:creator>
		<pubDate>Mon, 10 Oct 2011 07:17:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-177074</guid>
		<description><![CDATA[How to rebuild all the indexes in a database?Please suggest me.]]></description>
		<content:encoded><![CDATA[<p>How to rebuild all the indexes in a database?Please suggest me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Miles</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-172950</link>
		<dc:creator><![CDATA[Miles]]></dc:creator>
		<pubDate>Wed, 28 Sep 2011 21:04:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-172950</guid>
		<description><![CDATA[I do a very compreshensive index maintenance which allows for rebuilds and reorgs based upon certain parameters of fragmentation. I also give the option to do Online Rebuilds. My process logs all fragmentation before and after the rebuild or reorg. Of course a rebuild reduces the fragmentation greater than a reorg. But I have found one problem. When I choose to do an Online Rebuild, the fragmentation actually is higher after the rebuild than it is before. The version of SQL Server is 2008 10.0.2734. Is there an explanation as to why the Online Rebuild would cause increased fragmentation whereas a regular rebuild or reorg would not?

MS]]></description>
		<content:encoded><![CDATA[<p>I do a very compreshensive index maintenance which allows for rebuilds and reorgs based upon certain parameters of fragmentation. I also give the option to do Online Rebuilds. My process logs all fragmentation before and after the rebuild or reorg. Of course a rebuild reduces the fragmentation greater than a reorg. But I have found one problem. When I choose to do an Online Rebuild, the fragmentation actually is higher after the rebuild than it is before. The version of SQL Server is 2008 10.0.2734. Is there an explanation as to why the Online Rebuild would cause increased fragmentation whereas a regular rebuild or reorg would not?</p>
<p>MS</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-154979</link>
		<dc:creator><![CDATA[Dan]]></dc:creator>
		<pubDate>Mon, 08 Aug 2011 09:53:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-154979</guid>
		<description><![CDATA[How did Microsoft came with these thresholds?

if frag_level30% then REBUILD

The idea is that I dont have Enterprise Edition&#039;in production environment and I want to be able to do index maintenance without blocking the tables. And so my only option is to ALTER INDEX ... REORGANIZE.]]></description>
		<content:encoded><![CDATA[<p>How did Microsoft came with these thresholds?</p>
<p>if frag_level30% then REBUILD</p>
<p>The idea is that I dont have Enterprise Edition&#8217;in production environment and I want to be able to do index maintenance without blocking the tables. And so my only option is to ALTER INDEX &#8230; REORGANIZE.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: refog keylogger</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-148761</link>
		<dc:creator><![CDATA[refog keylogger]]></dc:creator>
		<pubDate>Sat, 16 Jul 2011 18:45:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-148761</guid>
		<description><![CDATA[Excuse for that I interfere ?At  
 
me a similar situation. I invite to discussion. Write here or in PM.]]></description>
		<content:encoded><![CDATA[<p>Excuse for that I interfere ?At  </p>
<p>me a similar situation. I invite to discussion. Write here or in PM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Margaret Norkett</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-147971</link>
		<dc:creator><![CDATA[Margaret Norkett]]></dc:creator>
		<pubDate>Wed, 13 Jul 2011 11:30:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-147971</guid>
		<description><![CDATA[I see a lot of people asking why thier databases and log files grow when they rebuild indexes. Mr. Pinal has explained that an index rebuild actually &lt;b&gt;drops and then recreates&lt;/b&gt; the index. This means space is consumed in the process and if your database is set to full, this also means transactions are written to the log. As a part of your index rebuilding, you should &lt;b&gt;backup both the database and the log&lt;/b&gt; in order to reclaim space used in the process.]]></description>
		<content:encoded><![CDATA[<p>I see a lot of people asking why thier databases and log files grow when they rebuild indexes. Mr. Pinal has explained that an index rebuild actually <b>drops and then recreates</b> the index. This means space is consumed in the process and if your database is set to full, this also means transactions are written to the log. As a part of your index rebuilding, you should <b>backup both the database and the log</b> in order to reclaim space used in the process.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GD</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-143109</link>
		<dc:creator><![CDATA[GD]]></dc:creator>
		<pubDate>Thu, 23 Jun 2011 04:35:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-143109</guid>
		<description><![CDATA[A FK has nothing to do with indexes. It is however recommended to put an index on a FK, but the FK itself is not an index, only a constraint.]]></description>
		<content:encoded><![CDATA[<p>A FK has nothing to do with indexes. It is however recommended to put an index on a FK, but the FK itself is not an index, only a constraint.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rached N.</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-142959</link>
		<dc:creator><![CDATA[Rached N.]]></dc:creator>
		<pubDate>Wed, 22 Jun 2011 11:16:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-142959</guid>
		<description><![CDATA[Hi every one. I&#039;m not a dba specialist, but a .net developer.
As i understand, Index Rebuild drops current index values and recreates new ones. In this case, what about the joined and related tables where the value is used as FK in another table ? This also needs to be updated to the new values?
Appreciate any explanation.]]></description>
		<content:encoded><![CDATA[<p>Hi every one. I&#8217;m not a dba specialist, but a .net developer.<br />
As i understand, Index Rebuild drops current index values and recreates new ones. In this case, what about the joined and related tables where the value is used as FK in another table ? This also needs to be updated to the new values?<br />
Appreciate any explanation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GD</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-139242</link>
		<dc:creator><![CDATA[GD]]></dc:creator>
		<pubDate>Mon, 06 Jun 2011 15:07:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-139242</guid>
		<description><![CDATA[depends on the fragmentation and the size of the table.  With reorganizzing you must be aware that this theoretical example will reorganize the whole table because it uses a kind of bubble-sort method: if the logical first page is physically the last.]]></description>
		<content:encoded><![CDATA[<p>depends on the fragmentation and the size of the table.  With reorganizzing you must be aware that this theoretical example will reorganize the whole table because it uses a kind of bubble-sort method: if the logical first page is physically the last.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: George</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-139239</link>
		<dc:creator><![CDATA[George]]></dc:creator>
		<pubDate>Mon, 06 Jun 2011 14:51:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-139239</guid>
		<description><![CDATA[Supposing my database is in Full Recovery mode. This means that doing an index rebuild will take some considerable size on the transaction log. (Index rebuild drops and recreates – using Create Index – all indexes). What about index reorganization? Is there also a considerable size impact on the transaction log?

Thanks!
George.]]></description>
		<content:encoded><![CDATA[<p>Supposing my database is in Full Recovery mode. This means that doing an index rebuild will take some considerable size on the transaction log. (Index rebuild drops and recreates – using Create Index – all indexes). What about index reorganization? Is there also a considerable size impact on the transaction log?</p>
<p>Thanks!<br />
George.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hari Krishna</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-135161</link>
		<dc:creator><![CDATA[Hari Krishna]]></dc:creator>
		<pubDate>Thu, 19 May 2011 04:12:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-135161</guid>
		<description><![CDATA[Hi Dave,


Could You Please Provide Query Performance Tuning in Sql Server 2008.






Thanks
HariKrishna]]></description>
		<content:encoded><![CDATA[<p>Hi Dave,</p>
<p>Could You Please Provide Query Performance Tuning in Sql Server 2008.</p>
<p>Thanks<br />
HariKrishna</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jamesnithya</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-124803</link>
		<dc:creator><![CDATA[jamesnithya]]></dc:creator>
		<pubDate>Thu, 24 Mar 2011 08:55:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-124803</guid>
		<description><![CDATA[how to rebuild index on a db as a whole?]]></description>
		<content:encoded><![CDATA[<p>how to rebuild index on a db as a whole?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hendra</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-117492</link>
		<dc:creator><![CDATA[Hendra]]></dc:creator>
		<pubDate>Wed, 09 Feb 2011 04:29:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-117492</guid>
		<description><![CDATA[why my log files become full ?, from 5GB to 50GB when rebuilding all the indexes ? and after it finished, my log file didn&#039;t go small...
I use FULL recovery model....
is there any way to prevent this ?

and I&#039;ve wierd situation, sometimes, after I rebuild index the fragmentation of that index is still high, 70%
but when I do backup first, and doing rebuild index after that, the fragmentated index become small]]></description>
		<content:encoded><![CDATA[<p>why my log files become full ?, from 5GB to 50GB when rebuilding all the indexes ? and after it finished, my log file didn&#8217;t go small&#8230;<br />
I use FULL recovery model&#8230;.<br />
is there any way to prevent this ?</p>
<p>and I&#8217;ve wierd situation, sometimes, after I rebuild index the fragmentation of that index is still high, 70%<br />
but when I do backup first, and doing rebuild index after that, the fragmentated index become small</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-112365</link>
		<dc:creator><![CDATA[Josh]]></dc:creator>
		<pubDate>Fri, 21 Jan 2011 02:12:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-112365</guid>
		<description><![CDATA[good day... 

I just want to know what to do when there are clustered index and non-clustered index in one table (i found out that the reason why i cant rebuild online is because of these - clustered and non-clustered in one table)  

some field says rebuild and the other reorganize. 

but when i tried to rebuild it i got an error because there are clustered index. 

should i use rebuild index (online or offline)
or
should i just reorganize it?

thanks...]]></description>
		<content:encoded><![CDATA[<p>good day&#8230; </p>
<p>I just want to know what to do when there are clustered index and non-clustered index in one table (i found out that the reason why i cant rebuild online is because of these &#8211; clustered and non-clustered in one table)  </p>
<p>some field says rebuild and the other reorganize. </p>
<p>but when i tried to rebuild it i got an error because there are clustered index. </p>
<p>should i use rebuild index (online or offline)<br />
or<br />
should i just reorganize it?</p>
<p>thanks&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nilam Shinde</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-111195</link>
		<dc:creator><![CDATA[Nilam Shinde]]></dc:creator>
		<pubDate>Sun, 16 Jan 2011 07:56:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-111195</guid>
		<description><![CDATA[I m facing same problem.When I rebuild index the db size is grow and when I reorganize the db size is not grow.In my case log file grows.]]></description>
		<content:encoded><![CDATA[<p>I m facing same problem.When I rebuild index the db size is grow and when I reorganize the db size is not grow.In my case log file grows.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GD</title>
		<link>http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-102313</link>
		<dc:creator><![CDATA[GD]]></dc:creator>
		<pubDate>Fri, 26 Nov 2010 14:29:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/12/22/sql-server-difference-between-index-rebuild-and-index-reorganize-explained-with-t-sql-script/#comment-102313</guid>
		<description><![CDATA[Me too, I miss 2 very important things:

1. rebuilding an index automatically also updates the statistics! If you reorganize, you should always update your statistics afterwards!

2. some mention the option ONLINE of rebuilding, but be aware that some cursors will fail when they are launched when the index rebuilding is done &quot;error: schema modification was detected&quot;]]></description>
		<content:encoded><![CDATA[<p>Me too, I miss 2 very important things:</p>
<p>1. rebuilding an index automatically also updates the statistics! If you reorganize, you should always update your statistics afterwards!</p>
<p>2. some mention the option ONLINE of rebuilding, but be aware that some cursors will fail when they are launched when the index rebuilding is done &#8220;error: schema modification was detected&#8221;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

