On Microsoft SQL Server 2008 how can I know or find out that database indices are regenerated?

link|improve this question

feedback

1 Answer

The indexes are always maintained and consistent, unless an index is set to Disabled, in which case it will be unavailable for use until it is rebuilt.

You can use "DBCC CHECKTABLE table_name, indexid" to run an integrity check on a specific index.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.