HomeOracleOracle Error PLS-00705: exception ‘string’ used in expression requiring return type

Oracle Error PLS-00705: exception ‘string’ used in expression requiring return type

Oracle Error Message

PLS-00705: exception ‘string’ used in expression requiring return type

Reason for the Error

An exception was referred to in an expression. Exceptions have names but not values and therefore cannot contribute values to an expression. For example, the following RETURN statement is illegal: FUNCTION credit_limit (cust_no INTEGER) RETURN NUMBER IS limit NUMBER; over_limit EXCEPTION; … BEGIN … RETURN over_limit; — illegal END;

Solution

Check the spelling of the identifiers in the expression, then rewrite the expression so that it does not refer to an exception.

Share:

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

Oracle Error Message CLSGN-32767: Internal error. Reason for the Error An unexpected error occurred. Solution Examine the message(s) that accompany...
Oracle Error Message CLSGN-00211: OCR batch operation failed. string Reason for the Error Setting a set of Oracle Cluster Registry...
Oracle Error Message CLSGN-00210: failed to get value for OCR key “string”. string Reason for the Error It was not...