Forum Replies Created

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

  • RE: Stored procedure and table value function

    just got the solution in another place, it should have been:

    dbo.F_TBL_VALS_FROM_STRING(''' + @doorList + ''')

    instead of

    dbo.F_TBL_VALS_FROM_STRING(' + @doorList + ')

  • RE: Stored procedure and table value function

    I get no errors and i don't know how to do a print of @SQLStr (I'll be happy to learn).

    my function code is posted bellow

    ALTER function F_TBL_VALS_FROM_STRING

    (@p_str varchar(4000))

    returns @tbl table...

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