Hi,
I have created a udf called 'udfListLen' :
---
create function udfListLen(@list text, @delimiter varchar(10)) returns int
as
begin
return 171
end
---
The script created the funcion, as I see it by executing:
sp_helptext udfListLen
But when I call it from inside a stored-procedure I receive the following error message :
"Server: Msg 195, Level 15, State 10, Line 3
'udfListLen' is not a recognized function name."
Does anyone has any idea of what´s happening ?
TIA,
Macaíba.