开发者

Error calling remote scalar-valued function

I am making a call from a sql 2005 database to a sql 2000 scalar-valued function and recieve the following error message:

Remote table-valued function calls are not allowed.

here is my call:

select * from [server/instance].[db name].dbo.[function name](param1, param2)

not sure why it says table-valued function, but that's the error message it get. Does anyone开发者_如何学运维 know of a way around this?

thanks in advance, Billy


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

If it's a scalar function, use this:

SELECT  *
FROM    OPENQUERY(SERVER, 'SELECT [db name].dbo.[function name](param1, param2)')
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜