存储过程的创建脚本如下。
CREATE PROCEDURE [dbo].[storedprocedure]
-- Add the parameters for the stored procedure here
@Mappings XML
AS
BEGIN
......
END
我用它调用它
exec storedprocedure xmlparam.
问题是 xmlparam 很大,每次我运行“exec 存储过程 xmlparam”时,sql server management studio 都会冻结几分钟。
有没有更好的方法来做到这一点?我想通过 ssms 运行 exec 命令,因为我想查看它吐出的不同记录集。