System TipThis article applies to a different operating system than the one you are using. Article content that may not be relevant to you is disabled.
This article was previously published under Q316549
This step-by-step article explains two ways that you can
debug SQL Server stored procedures and the necessary configuration settings and
steps for each approach.
A Visual Studio .NET developer can use the
Server Explorer to debug SQL Server stored procedures independently of any
Visual Studio project, or the developer can step into the code of the stored
procedure directly from managed code in a Visual Basic, Visual C#, or Visual J#
project.
Option 1: Debug a stored procedure in standalone mode
Open Server Explorer.
NOTE: It is not necessary to add a Data Connection to work with a SQL
Server server because SQL Server servers are listed under the Servers node
also. You will use the Servers node in the steps that follow; however, you can
use a Data Connection to you SQL Server server in the same way.
Under the Servers node in Server Explorer, expand the SQL Server machine name, expand the SQL Servers node, expand the SQL Server instance, expand the Northwind database node, and then expand the stored procedures node.
Right-click the CustOrderHist stored procedure and then click Step Into Stored Procedure.
The Run stored procedure dialog box opens,
which lists the parameters of the stored procedure. Type
ALFKI as the value for the @CustomerID input parameter and then click OK.
In the Visual Studio design environment, a window opens
that displays the text of the stored procedure. The first executable line of
the stored procedure is highlighted. Press F11 to step through the stored
procedure to completion.
In the Output window, the following message is displayed,
which indicates successful execution:
The program 'SQL
Debugger: T-SQL' has exited with code 0 (0x0).
Option 2: Step into a stored procedure from managed code
Create a new Visual Basic Windows Application
project.
Drag a Button control from the toolbox to Form1. At the top of the Form1 code
window, add the following line of code:
Imports System.Data.SqlClient
Copy the following code into the Button1_Click event procedure:
NOTE: Modify the connection string as necessary for your environment.
Dim cn As SqlConnection
Dim strCn As String
Dim cmd As SqlCommand
Dim prm As SqlParameter
strCn = "Data Source=(local);Initial Catalog=Northwind;" & _
"Integrated Security=SSPI"
cn = New SqlConnection(strCn)
cmd = New SqlCommand("CustOrderHist", cn)
cmd.CommandType = CommandType.StoredProcedure
prm = New SqlParameter("@CustomerID", SqlDbType.Char, 5)
prm.Direction = ParameterDirection.Input
cmd.Parameters.Add(prm)
cmd.Parameters("@CustomerID").Value = "ALFKI"
cn.Open()
Dim dr As SqlDataReader = cmd.ExecuteReader
While dr.Read
Console.WriteLine("Product ordered: {0}", dr.GetSqlString(0))
End While
dr.Close()
cn.Close()
In Solution Explorer, right-click the project (not the
solution) and open the Property pages. Click Configuration Properties in the tree and then click to select the SQL Server Debugging check box on the Debugging page to enable stored procedure debugging.
Set a breakpoint on the following line of code:
Dim dr As SqlDataReader = cmd.ExecuteReader
In Server Explorer, locate and open the CustOrderHist stored procedure as described in Option 1. Right-click the stored
procedure and then click Edit Stored Procedure.
Set a breakpoint in the stored procedure on the SELECT
statement, which is the only line of executable code.
Press F5 to run the Visual Basic project.
When Form1 appears, click the command button. The code will run to the breakpoint that you set before the
stored procedure is called.
Press F11. Code execution steps from the ExecuteReader method into the stored procedure window.
Press F11 again. The single line of code in the stored
procedure, the SELECT statement, executes. Then control returns to your Visual
Basic project, and the project runs to completion.
To continue to step through the Visual Basic code after you
step out of the stored procedure, you must set a second breakpoint in the
Visual Basic code after the call to the stored procedure. For example, in the
sample code shown in this section, you can set the second breakpoint on the
following line:
To step from Visual Studio code into a stored procedure,
you must enable SQL Debugging in the Project Properties on the Debugging page.
To step through stored procedure code, you must set a
breakpoint in the stored procedure itself. Otherwise, debugging steps over the
stored procedure and the window for the stored procedure does not
open.
To continue to step through Visual Studio code after
debugging steps out of a stored procedure, you must set a breakpoint in the
project code at a point after the execution of the stored procedure. Otherwise,
the code runs to completion after debugging steps out of the stored
procedure.
For setup and configuration issues, refer to the section
entitled "Setting Up SQL Debugging" in the Visual Studio .NET
documentation.
The following is a list of limitations that you may encounter
when you debug stored procedures and that you do not encounter when you debug
Visual Studio code:
You cannot "break" execution.
You cannot "edit and continue."
You cannot change the order of statement
execution.
Although you can change the value of variables, your
changes may not take effect because the variable values are cached.
Output from the SQL PRINT statement is not
displayed.