将OUTPUT参数与sp_execute一起使用时出错

时间:2011-08-18 17:32:20

标签: sql-server-2005

我遇到动态SQL问题,并将代码缩减到这个最简单的示例。为什么这样:

DECLARE @Statement NVARCHAR(1000), @Name SYSNAME;
SET @Statement = N'SELECT TOP 1 @Name = name from sys.objects';
EXEC sp_execute @Statement, N'@Name SYSNAME OUTPUT', @Name OUTPUT;

告诉我:

Msg 214, Level 16, State 2, Procedure sp_execute, Line 1
Procedure expects parameter '@handle' of type 'int'.

正确的语法是什么?

我也尝试过:

DECLARE @Statement NVARCHAR(1000), @Name SYSNAME;
SET @Statement = N'SELECT TOP 1 @NameOUT = name from sys.objects';
EXEC sp_execute @Statement, N'@NameOUT SYSNAME OUTPUT', @NameOUT = @Name OUTPUT;

但是有同样的错误。

1 个答案:

答案 0 :(得分:11)

我认为您的意思是使用sp_executesql,因为您正在执行SQL字符串。比较文档:sp_executesp_executesql