I'm trying to call a user defined function FUNCA that I created in library DEVA. "create function DEVA/FUNCA etc etc etc"
If I go into STRSQL and try to run
I'll get an error message "Column DEVA not in specified tables."
If I run
I'll get an error message "FUNCA in *LIBL type *N not found."
Does anyone know what's wrong and can suggest a way to fix this? I want to be able to use this function in a stored procedure and to call the procedure from odbc.
If I go into STRSQL and try to run
Code:
select DEVA/FUNCA() from SYSIBM/SYSDUMMY1
If I run
Code:
select FUNCA() from SYSIBM/SYSDUMMY1
Does anyone know what's wrong and can suggest a way to fix this? I want to be able to use this function in a stored procedure and to call the procedure from odbc.
Comment