How to fix the Oracle error ORA-06565: cannot execute string from within stored procedure?
In this post, you’ll learn more about the Oracle ErrorORA-06565: cannot execute string from within stored procedure with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
ORA-06565: cannot execute string from within stored procedure
Reason for the Error ORA-06565: cannot execute string from within stored procedure
The named procedure cannot be executed from within a stored procedure, function or package. This function can only be used from pl/sql anonymous blocks.
How to fix the Error ORA-06565: cannot execute string from within stored procedure ?
You can fix this error in Oracle by following the below steps
Remove the procedure from the calling stored procedure.
Leave Your Comment