﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / SQL Server 2008 / SQL Server 2008 High Availability  / Reorg error / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Sun, 19 May 2013 06:34:53 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Reorg error</title><link>http://www.sqlservercentral.com/Forums/Topic1377390-1549-1.aspx</link><description>origininal error message after running  [b]exec [sp_ShowContigAll] 0,1,95[/b] was"Msg 2588, Sev 16, State 3, Line 1 : Cannot find partition number 1 for index ID 19, object ID 803586001. [SQLSTATE 42000]"I ran dbcc checkdb and check alloc and both returned no errors, the db is perfectly normal. But I also found my own answer too.Some other admin had started "Database Engine Tuning Advisor" and the process died unexpectedly and all the Hypothetical Indexes and Statisticswere not cleared. The index pointed in the error message is one of those, so I cleared all of those with this script and reindexed the db with no problem. I hope it helps some others.select 'drop index ' + b.name + '.' + a.name   from sys.indexes a, sys.all_objects b where a.object_id = b.object_id and is_hypothetical = 1[url=http://msdn.microsoft.com/en-us/library/ms190172(v=sql.105).aspx][/url]</description><pubDate>Sat, 16 Feb 2013 13:21:25 GMT</pubDate><dc:creator>fullname-214799</dc:creator></item><item><title>RE: Reorg error</title><link>http://www.sqlservercentral.com/Forums/Topic1377390-1549-1.aspx</link><description>Run the following, post the full, complete and unedited output[code]DBCC CHECKDB (&amp;lt;Database Name&amp;gt;) WITH NO_INFOMSGS, ALL_ERRORMSGS[/code]</description><pubDate>Sat, 16 Feb 2013 03:32:32 GMT</pubDate><dc:creator>GilaMonster</dc:creator></item><item><title>RE: Reorg error</title><link>http://www.sqlservercentral.com/Forums/Topic1377390-1549-1.aspx</link><description>[quote][b]opc.three (11/9/2012)[/b][hr]I have not seen that error before, but it does not sound good. Have you run DBCC CHECKDB(your_dbname) WITH NO_INFOMSGS on your database lately? If you run it and it returns errors post the complete output here.[/quote]Hi,I have the same problem like RK2012. Ran dbcc as you said and it returned no errors. What shpuld I do next. Also RK2012 did you find a solution that you can post here. Thanks in advance,</description><pubDate>Sat, 16 Feb 2013 02:35:47 GMT</pubDate><dc:creator>fullname-214799</dc:creator></item><item><title>RE: Reorg error</title><link>http://www.sqlservercentral.com/Forums/Topic1377390-1549-1.aspx</link><description>I have not seen that error before, but it does not sound good. Have you run DBCC CHECKDB(your_dbname) WITH NO_INFOMSGS on your database lately? If you run it and it returns errors post the complete output here.</description><pubDate>Fri, 09 Nov 2012 22:23:25 GMT</pubDate><dc:creator>opc.three</dc:creator></item><item><title>Reorg error</title><link>http://www.sqlservercentral.com/Forums/Topic1377390-1549-1.aspx</link><description>Hello,My job got failed due to below errorCannot find partition number 1 for index ID 30, object ID 437576597. [SQLSTATE 42000] (Error 2588) DBCC execution completedKindly help me on this.</description><pubDate>Thu, 25 Oct 2012 22:40:44 GMT</pubDate><dc:creator>RK2012</dc:creator></item></channel></rss>