如何将 SELECT 语句转储到“消息”中 来自存储过程的 SQL Server mgmt studio 中的窗格?

发布于 2024-07-25 20:32:55 字数 187 浏览 0 评论 0原文

我可以在存储过程中使用 PRINT 语句来调试我的代码。 我在 SQL Server Management Studio 的“消息”选项卡中看到输出。 如何将一个或多个完整 SELECT 语句输出转储到该“消息”选项卡?

我的存储过程返回多个输出变量,因此返回单个数据集不是这里的选项。 我正在努力寻找一种调试复杂程序的好方法。

I can use the PRINT statement in a stored procedure to debug my code. I see the output in the Messages tab of SQL Server Management Studio. How can I dump one or more entire SELECT statement outputs to that Messages tab?

My stored procedure returns several output variables so returning a single dataset isn't an option here. I am struggling with finding a good way to debug my complex procedures.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

¢好甜 2024-08-01 20:32:56

设置“结果到文本”选项,您的“结果”和“消息”选项卡将合并为一个选项卡,结合您的 PRINT 和 SELECT 语句。

要将结果设置为文本,请执行以下任一操作:

  • Control-T
  • 查询菜单 \ 结果到 \ 结果到文本

Set the "Results to Text" option and your Results and Messages tabs will be consolidated to a single tab, combining your PRINT and SELECT statements.

To set Results to Text, either:

  • Control-T
  • Query menu \ Results To \ Results to Text
雨夜星沙 2024-08-01 20:32:56

将查询的全部内容打印到消息窗口可能会带来更多麻烦,而不是值得的。 相反,我建议从查询窗口调试该过程。 您可以做的就是向过程中添加一个可选参数,默认值为 NULL。 您的应用程序不会通过它,因此您可以利用它来发挥您的优势。 例如:

Alter Procedure Foo(@Col1 int, @col2 varchar(20), @Debug Bit = NULL)
As
SET NOCOUNT ON

If @Debug = 1
  Begin
    Select * From SomeTable Where Col1 = @Col1
  End

-- The rest of your code here

然后,当您从查询窗口调用此过程时,只需将值 1 传递给该 @Debug 参数的过程

Getting the entire contents of a query to print to the messages window would probably be more trouble than it's worth. Instead, I would recommend debugging the procedure from a query window. What you can do is add an optional parameter to your procedure, with a default of NULL. Your app won't be passing it, so you can use this to your advantage. Ex:

Alter Procedure Foo(@Col1 int, @col2 varchar(20), @Debug Bit = NULL)
As
SET NOCOUNT ON

If @Debug = 1
  Begin
    Select * From SomeTable Where Col1 = @Col1
  End

-- The rest of your code here

Then, when you call this procedure from a query window, simply pass in a value of 1 to the procedure for that @Debug parameter

岁月如刀 2024-08-01 20:32:56

您可以从有问题的存储过程中填充临时表或表变量,然后在调用存储过程后从这些表中进行选择。 确保删除并重新创建 sp 中的所有临时表。

CREATE TABLE ##t1 (x int)
GO

CREATE PROCEDURE Foo AS
BEGIN
  TRUNCATE TABLE ##t1
  INSERT INTO ##t1 SELECT column FROM table;
END
GO

exec Foo;
select x from ##t1;

You might populate a temporary table, or table variable, from within your problematic stored procedure, then select from those tables after calling the stored procedure. Make sure to drop and recreate any temporary tables in the sp.

CREATE TABLE ##t1 (x int)
GO

CREATE PROCEDURE Foo AS
BEGIN
  TRUNCATE TABLE ##t1
  INSERT INTO ##t1 SELECT column FROM table;
END
GO

exec Foo;
select x from ##t1;
小…红帽 2024-08-01 20:32:56

它必须在消息窗格中吗? 我总是发现只运行选择查询很方便,它将结果输出到“结果”窗格中,而实际输出则在另一个结果集中。 有时我会添加一个“标识符”列来帮助识别结果。 例如:

select 'checkpoint1',a,b,c from table1
....
select 'table @a', *  from @a
....
<actual query here>

当存储过程准备好时,只需删除这些脚手架语句

Does it have to be in the messages pane ? I always find it convenient to just run the select query, which outputs the results into the Results pane, with the actual output in another result set. Sometimes I include an 'identifier' column that helps identify the results. For instance:

select 'checkpoint1',a,b,c from table1
....
select 'table @a', *  from @a
....
<actual query here>

When the stored proc is ready to go just remove these scaffolding statements

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文