Question

I applied the SQL Server Data Tools patch to Visual Studio 2012 (Premium) and created a SQL Server CLR user-defined function project in C#:

public partial class UserDefinedFunctions
{
    [Microsoft.SqlServer.Server.SqlFunction]
    public static SqlInt32 Add42(SqlInt32 in_param)
    {
        SqlInt32 retval = in_param + 42;  // Set break point here.
        return retval;
    }
}

In the SQL Server Object Explorer pane, I right-click on the newly published UDF and select "Execute Function..." I am prompted to supply a sample input value, and Visual Studio then publishes the function (again) to my local 2012 SQL Server and generates a script that looks like this:

DECLARE    @return_value Int

EXEC    @return_value = [dbo].[Add42] @in_param = 5

SELECT    @return_value as 'Return Value'

GO

... and executes it, returning the expected result of 47.

If I now put a break point on an executable line in my CLR UDF C# code, right-click the UDF function in SQL Server Object Explorer, and this time select "Debug Function...", I land in a debugger for the generated SQL test script. I can step through the SQL statements to the end of the script, which returns the correct result, but the breakpoint in my C# code is never reached in the C# debugger.

The terminology for this feature seems misleading. To any programmer, "debugging" a function means stepping through the executable lines in the code of the function itself. Simply generating a SQL test harness that calls my compiled function and gets back the result is just "testing" the function. At most, the only thing being "debugged" is the tool-generated test itself, because you can't "Step Into" the CLR code. The only option is to "Step Over" it.

So how do I get Visual Studio to actually debug, and hit the breakpoint in my UDF C# code?

Was it helpful?

Solution

Okay, I finally figured this out. To debug SQL CLR code in VS 2012:

  1. Create a SQL test script that calls the UDF, sproc, or other CLR object. (You can do this by using the "Execute Function" or "Debug Function" options in the Server Object Explorer, as described in the question.)

  2. Save the generated script. (It will be called something like "SQLQuery1.sql" by default. You may wish to give it a more meaningful name.)

  3. In Solution Explorer, right-click the UDF (or other CLR type) project, and select "Properties".

  4. The project's properties tab will open. On the left, select the "Debug" category.

  5. In the "Start Action" subcategory of the Debug panel, select the "Startup script:" radio button. This will enable the associated dropdown so that you can specify the .sql script created in Step 1.

  6. Save all, toggle a breakpoint on an executable line of your C# or other .NET language code, and press the debug button.

NOTE: You may now get a dialog telling you that "Windows Firewall has blocked some features of this program." I checked the boxes to allow access to domain and private networks.

Proceeding now should cause your breakpoint to be reached.

OTHER TIPS

For Visual Studio 2015 + Update 2:

In SQL Server Object Explorer pane, right-click on the server and select "Allow SQL/CLR Debugging":

enter image description here

In Server Explorer, right click on the function you want to debug, and select Execute:

enter image description here

It will generate the code for you. Select Execute with Debugger:

enter image description here

You can then place a breakpoint in your C# code, and it will hit it.

It will ask to open a port in your firewall, and it will ask to attach to SQL Server.

I do not know if SSDT changes this, but in VS2008 I debug a .net UDF as follows:

  • I deploy it to my local SQL server,
  • then I attach VS to the SQL Server process (Menu Debug/Attach to process/sqlserver.exe, if SQL Server is running as a service it requires that VS was started as administrator).
  • Then execute some SQL code calling the UDF, e. g. in Management Studio. Maybe this will work from SSDT in VS 2012.

The patch you applied may install VS items which are not current with the Visual Studio Quarterly update. I recommend that you now apply the latest Visual Studio Quarterly Update for VS 2012.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top