SYBASE SQL- 为关闭设置语句 "T-SQL Text Output"?

SYBASE SQL- SET STATEMENT for Turning Off "T-SQL Text Output"?

编辑:原来这是 Rapid 中的一个设置 SQL

我正在使用 Rapid SQL IDE 生成报告,有几个 T-SQL 步骤创建 temp tables 并在 table 网格输出显示 "The command completed with no results returned." 由于这些输出行,我必须重新 运行 代码的注释部分以在 temp tables 之后生成实际报告的干净版本创建。有没有办法摆脱那些 T-SQL 输出,这样我就可以在 T-SQL 步骤完成后 运行 干净的报告,而不必重新 运行, 使用 SET STATEMENT 之类的 SET T-SQL-OUTPUT OFF?我在 MS 的开发网络中没有看到任何内容 (https://msdn.microsoft.com/en-us/library/ms188394.aspx)

示例输出:

1 | The command completed with no results returned. |
2 | The command completed with no results returned. |
3 | The command completed with no results returned. |
4 | The command completed with no results returned. |
5 | The command completed with no results returned. |
6 | The command completed with no results returned. |


  | Date    | TransType | Customer | Sales |
1 | 1/1/2012|     S     | ABC Co.  | 0  |
2 | 1/1/2012|     S     | ABC Co.  | 0  |
3 | 1/1/2012|     S     | ABC Co.  | 0  |

此输出不是来自 T-SQL 或 Sybase 服务器。它可能来自应用程序。