远程访问Function时报错Remote table-valued function calls are not allowed.

Posted John_杰

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了远程访问Function时报错Remote table-valued function calls are not allowed.相关的知识,希望对你有一定的参考价值。

开始是这样调用的:
select * from [LinkedServer].[db name].dbo.[function name](param1, param2)

原因:

Only table-valued functions can be used in the FROM clause.

解决办法:

If it‘s a scalar function, use this:

SELECT  * FROM    OPENQUERY(LinkedServer, ‘SELECT [db name].dbo.[function name](param1, param2)‘)
 

以上是关于远程访问Function时报错Remote table-valued function calls are not allowed.的主要内容,如果未能解决你的问题,请参考以下文章