December 19, 2012 at 10:53 am
Dear Friends
I have made a maintenance plan to reorganize index daily, but this error showed to me and I don't understand it and how to fix it. Thanks lot
Failed:(-1073548784) Executing the query "ALTER INDEX [Cluster_inde] ON [dbo].[DeficiencyChe..." failed with the following error: "The index "Cluster_inde" (partition 1) on table "DeficiencyCheckListItems" cannot be reorganized because page level locking is disabled.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.
December 19, 2012 at 11:34 am
zi (12/19/2012)
Dear FriendsI have made a maintenance plan to reorganize index daily, but this error showed to me and I don't understand it and how to fix it. Thanks lot
Failed:(-1073548784) Executing the query "ALTER INDEX [Cluster_inde] ON [dbo].[DeficiencyChe..." failed with the following error: "The index "Cluster_inde" (partition 1) on table "DeficiencyCheckListItems" cannot be reorganized because page level locking is disabled.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.
The error states exactly what the problem is, in this case. You can't reorg this index. It will need to be rebuilt or the index will need to be changed to allow page locks.
--Jeff Moden
Change is inevitable... Change for the better is not.
December 19, 2012 at 12:23 pm
Thank you very much
December 19, 2012 at 8:56 pm
please run this command.
ALTER INDEX [index_name ] ON [table_name] SET ( ALLOW_PAGE_LOCKS = ON )
December 23, 2012 at 2:17 pm
Thank you very much, it works
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply