I have a function that returns a table.fn_iter_charlist_to_table(@IDs, DEFAULT) CREATE FUNCTION fn_iter_charlist_to_table (@list ntext, @delimiter nchar(1) = N',') RETURNS @tbl TABLE (listpos int IDENTITY(1, 1) NOT NULL, str varchar(4000), nstr nvarchar(2000)) AS BEGIN--and so on
Having a bit of trouble Msg 195, Level 15, State 10, Line 6'fn_iter_charlist_to_table' is not a recognized function name.And using SQL server 2000. Yes, I know wrong forum but it's going to go on 2005 as well.Thanks for any input,Zath