On Microsoft SQL Server 2008 how can I know or find out that database indices are regenerated?
Asked
Active
Viewed 64 times
1 Answers
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,176
- 18
- 18