5 pts.
 ORA-06550 error: the function is undefined or not a procedure, yet I have defined the function
I get the following error message: ORA-06550: line 2, column 1: PLS-00221: 'CUSTOM_AUTH' is not a procedure or is undefined ORA-06550: line 2, column 1: PL/SQL: Statement ignored Error ERR-10460 Unable to run authentication credential check function. I have defined the function custom_auth

Software/Hardware used:
ASKED: March 13, 2008  1:24 AM
UPDATED: May 26, 2010  9:00 AM

Answer Wiki:
Have you granted rights to the function? Do you have the case of the object correct?
Last Wiki Answer Submitted:  March 13, 2008  6:52 am  by  Denny Cherry   64,550 pts.
All Answer Wiki Contributors:  Denny Cherry   64,550 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

change the word FUNCTION in your function with the word PROCEDURE, however this could not return any thing, but u arrange a variable as OUT type, so after completion of procedure, u are able to get the value of that OUT variable.

 10 pts.