I have identify the index that is causing this problem by using this script:
SELECT index_name, status FROM sys.user_indexes WHERE status != 'VALID';
The status of the index is "INPROGRS"
After google-ing around, the only way forward is to drop this index and recreate it. (Do correct me if I am wrong)
Question:
If I am to drop this index and recreate it, will it have any impact to the table using this index?
Regards
Whayne