1

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

Makach
  • 251
  • 1
  • 10

1 Answers1

3

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.

SqlACID
  • 2,166
  • 18
  • 18