Viewing 2 posts - 1 through 3 (of 3 total)
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 + ')
September 21, 2010 at 2:29 am
#1224610
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...
September 21, 2010 at 1:25 am
#1224583