I've re-index the database. It didn't fix the problem. What do you mean
dropping?
It sounds like a corrupt index. Drop (delete) the index(es) on the
table and recreate it (them.)
-Eric Isaacs
Hi Dave
What do you mean by re-index the database? How did you do that?
Please check the documentation for the DROP INDEX command. After you drop
the index you should rebuild it with CREATE INDEX.
(Sometimes these two steps can be combined, but since we trying to get rid
of corruption, it's best to do them separately.)

Signature
HTH
Kalen Delaney, SQL Server MVP
www.InsideSQLServer.com
www.SQLTuners.com
> I've re-index the database. It didn't fix the problem. What do you mean
> dropping?
[quoted text clipped - 13 lines]
>> > Thanks
>> > Dave
Eric Isaacs - 30 Sep 2008 22:14 GMT
Kalen,
Are you wondering what reindexing is, or what DCR's definition of
reindexing is?
Reindexing is different than drop and recreate. Many times it's more
efficient to reindex than drop and recreate, but if you have a corrupt
index, dropping it and recreating it is probably the best way to go,
especially if you tried to reindex it and it was still corrupted.
http://blog.sqlauthority.com/2007/01/31/sql-server-reindexing-database-tables-an
d-update-statistics-on-tables/
-Eric Isaacs
Kalen Delaney - 30 Sep 2008 22:27 GMT
I'm wondering what DCR meant by reindexing and how he did it.
And I did mention that for fixing corruption, drop + create was probably
best. I am well aware of the differences.

Signature
HTH
Kalen Delaney, SQL Server MVP
www.InsideSQLServer.com
www.SQLTuners.com
> Kalen,
>
[quoted text clipped - 9 lines]
>
> -Eric Isaacs