I'm currently running this as a maintenance plan nightly. I just purchased some SQL performance monitoring software and found a huge spike in waits at midnight when this task runs. I'm pretty confident that the "include indexes" portion of this task is causing the performance issue as this is the sql statement singled out for causing the waits...DECLARE @BlobEater VARBINARY(8000) SELECT @BlobEater = CheckIndex (ROWSET_COLUMN_FACT_BLOB) FROM { IRowset 0x201F5FA505000000 } GROUP BY ROWSET_COLUMN_FACT_KEY >> WITH ORDER BY ROWSET_COLUMN_FACT_KEY, ROWSET_COLUMN_SLOT_ID, ROWSET_COLUMN_COMBINED_ID, ROWSET_COLUMN_FACT_BLOB OPTION ( ORDER GROUP)
How important is it to include indexes?