Nolock not working inside linked query

1.6k Views Asked by At

I am trying to access a linked query with (nolock) option, but it is throwing me error, below is my query.

SELECT * FROM openquery(testengine , 'SELECT * FROM employee WITH(nolock)')

The following error is returned:

an error occurred while preparing the query "my query" for execution against OLEDB provider "ORAOLEDB.oracle" for linked server

1

There are 1 best solutions below

0
On

From your error message, it looks like the linked server is Oracle. OPENQUERY queries are executed on the target server, and so must be written in the SQL dialect of the target system.

NOLOCK is not supported Oracle syntax - hence the error.