I have a SQL Server instance that I've added a linked server to another SQL instance. The table I'm accessing on the linked server contains spatial types. When I try to query the table I receive an error:
Objects exposing columns with CLR types are not allowed in distributed queries. Please use a pass-through query to access remote object.
If I use OPENQUERY
with the same query I get another error:
A severe error occurred on the current command. The results, if any, should be discarded.
Is there any way to query tables that contain spatial types via linked servers?