The READPAST lock hint is only allowed on target tables of UPDATE and DELETE and on tables specified in an explicit FROM clause.

Error Message:
Msg 4102, Level 15, State 1, Line 6
The READPAST lock hint is only allowed on target tables of UPDATE and DELETE and on tables specified in an explicit FROM clause.

Severity level:
15.

Description:
This error message appears when you try to use the READPAST hint on the target table of an INSERT statement.

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

Resolution:
Errors of the Severity Level 15 are generated by the user and can be fixed by the SQL Server user. The statement cannot be executed this way. You cannot use the READPAST hint on the target table of an INSERT statement.

Versions:
All versions of SQL Server.

Example(s):
IF OBJECT_ID (‘dbo.t’) IS NOT NULL
    DROP TABLE dbo.t;
GO
CREATE TABLE dbo.t
(
    c1 int
);

INSERT INTO dbo.t WITH (READPAST) SELECT 1 ;

Remarks:
In the above example we try to use the READPAST hint on dbo.t in an INSERT statement. This raises the error.

]]>

Leave a comment

Your email address will not be published.