Forum Replies Created

Viewing 2 posts - 1 through 3 (of 3 total)

  • RE: How to debug User Defined Function ?

    I've found a way to get intermediate values back from my function.

    Here is my example :

     

    create function dbo.MyFunction(@Arg1 int, @Arg2 int)

    returns @DebugTable TABLE(Col1 varchar(255) null)

    as

    begin

    declare @MyVariable int

    --

    -- some calculations to...

  • RE: How to debug User Defined Function ?

    When I talked about tracing, I would like to show intermediate values in calculations.

    I don't know if it's possible using Profiler.

Viewing 2 posts - 1 through 3 (of 3 total)