On Microsoft SQL Server 2008 how can I know or find out that database indices are regenerated?
Tell me more
×
Server Fault is a question and answer site for
professional system and network administrators. It's 100% free, no registration required.
|
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. |
|||
|
|