エラーリモートテーブル値関数呼び出しは、リモートアクセス関数を許可されていません。



Error Remote Table Valued Function Calls Are Not Allowed Remote Access Function



Is this the beginning of the call:
select * from [LinkedServer].[db name].dbo.[function name](param1, param2)

the reason:

FROMで使用できるのはテーブル値関数のみです。句。

解決:



スカラー関数の場合は、次を使用します。

SELECT * FROM OPENQUERY(LinkedServer
|_+_|