I have the following function in package TCN in my Oracle database:
function test4(i_test in varchar2) return varchar2 is
begin
return 'test4';
end;
When trying to execute this function in a task, i get the following error message:
Error in SQL query: ERROR [HY000] [Oracle][ODBC][Ora]ORA-06550: line 1, column 7:
PLS-00221: 'TEST4' is not a procedure or is undefined
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored
Is it not possible to call a function?
Edited by moderator
2015-06-17T08:42:51Z
|
Reason: Not specified