在 Microsoft Sql Server Management Studio 中测试存储过程
如何在 Microsoft Sql Server Management Studio 中测试现有存储过程?
How can you test an existing stored procedure in Microsoft Sql Server Management Studio?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不确定这里的最佳方法是我的做法:
您可以右键单击 sp >;任务>执行到>新的查询窗口。这将允许您使用参数调用 SP。
然后,您可以在 SP 中的各个点进行选择以进行调试。
如果它是一个非常复杂的 SP,另一种方法是将代码从 SP 中取出并仅声明变量来代替参数,然后您可以直接运行 TSQL 代码。
但很想听到任何更好的方法。
Not sure of best approach here is how I do it:
You can right click the sp > tasks > execute to > new query window. This will allow you to call the SP with parameters.
You can then do selects at various points in the SP for debugging.
The other way if it is a really complex SP is to take the code out of an SP and just declare variables in place of the parameters then you can just run the TSQL code directly.
Would love to hear any better ways though.
这里的解释/示例来自 MSDN 使用变量和参数(数据库引擎)
Transact-SQL 有多种在 Transact-SQL 语句之间传递数据的方法。其中包括:
Transact-SQL 局部变量。
Transact-SQL 变量是 Transact-SQL 批处理和脚本中可以保存数据值的对象。声明或定义变量后,批处理中的一条语句可以将变量设置为一个值,批处理中的后续语句可以从该变量获取该值。例如:
复制
注释
批量中可以声明的局部变量的最大数量为 10,000。
Transact-SQL 参数。
参数是用于在存储过程和执行该存储过程的批处理或脚本之间传递数据的对象。参数可以是输入参数或输出参数。例如:
复制
应用程序使用应用程序变量和参数标记来处理 Transact-SQL 语句中的数据。
应用程序变量
应用程序编程语言(例如 C、C++、Basic 和 Java)都有自己的变量来保存数据。使用数据库 API 的应用程序必须将 Transact-SQL 语句返回的数据移至应用程序变量中,然后才能使用这些数据。这通常是使用称为绑定的过程来完成的。应用程序使用 API 函数将结果集列绑定到程序变量。当获取一行时,API 提供程序或驱动程序将数据从列移动到绑定的程序变量。
参数标记
参数标记受 ADO、OLE DB 和基于 ODBC 的数据库 API 支持。参数标记是放置在 Transact-SQL 语句中输入表达式位置的问号 (?)。然后将参数标记绑定到应用程序变量。这允许将应用程序变量中的数据用作 Transact-SQL 语句中的输入。参数标记还允许将存储过程输出参数和返回代码绑定到应用程序变量。当执行过程时,输出数据将返回到绑定变量。 DB-Library API 还支持将存储过程参数和返回码绑定到程序变量。
问候
Here The explanation/Example from MSDN Using Variables and Parameters (Database Engine)
Transact-SQL has several ways to pass data between Transact-SQL statements. These include the following:
Transact-SQL local variables.
A Transact-SQL variable is an object in Transact-SQL batches and scripts that can hold a data value. After the variable has been declared, or defined, one statement in a batch can set the variable to a value and a later statement in the batch can get the value from the variable. For example:
Copy
Note
The maximum number of local variables that can be declared in a batch is 10,000.
Transact-SQL parameters.
A parameter is an object used to pass data between a stored procedure and the batch or script that executes the stored procedure. Parameters can be either input or output parameters. For example:
Copy
Applications use application variables and parameter markers to work with the data from Transact-SQL statements.
Application variables
The application programming languages such as C, C++, Basic, and Java have their own variables for holding data. Applications using the database APIs must move the data returned by Transact-SQL statements into application variables before they can work with the data. This is typically done using a process called binding. The application uses an API function to bind the result set column to a program variable. When a row is fetched the API provider or driver moves the data from the column to the bound program variable.
Parameter markers
Parameter markers are supported by the ADO, OLE DB, and ODBC-based database APIs. A parameter marker is a question mark (?) placed in the location of an input expression in a Transact-SQL statement. The parameter marker is then bound to an application variable. This allows data from application variables to be used as input in Transact-SQL statements. Parameter markers also let stored procedure output parameters and return codes be bound to application variables. The output data is then returned to the bound variables when the procedure is executed. The DB-Library API also supports binding stored procedure parameter and return codes to program variables.
Regards