Conflicting locking hints specified

Error Message:
Msg 1047, Level 15, State 1, Line 3
Conflicting locking hints specified.

Severity level:
15.

Description:
This error message appears when you try to use incompatible locking hints.

Consequences:
The SQL statement cannot be parsed and further execution is stopped.

Resolution:
Error of the Severity level 15 are generated by the user and can be fixed by the SQL Server user. You must remove the incompatible locking hints.

Versions:
All versions of SQL Server.

Example(s):
USE Northwind
SELECT *
  FROM dbo.Orders WITH(UPDLOCK, XLOCK, HOLDLOCK)

Remarks:
In the above example UPDLOCK is incompatible with XLOCK. One of these hints must be removed from the SELECT statement in order to be successfully executed. More information about locks, locking hints and their compatibility can be found in the Books Online.

]]>

Leave a comment

Your email address will not be published.