Hi
While executing a query on the remote server getting error
select * from [remoteservername].[Dbname].[Username].[tablename] (Nolock)
Server: Msg 7377, Level 16, State 1, Line 1
Cannot specify an index or locking hint for a remote data source.
But when I run the same query like this
select * from [remoteservername].[Dbname].[Username].[tablename] Nolock
It gives the result.
What is the difference between the two??Why the first query gives error and the second query gives a result.