HomeOracleOracle Error PLS-00229: Attribute expression within SQL expression

Oracle Error PLS-00229: Attribute expression within SQL expression

Oracle Error Message

PLS-00229: Attribute expression within SQL expression

Reason for the Error

An attribute expression, such as SQL%NOTFOUND, was used in a SQL statement, but attribute expressions are allowed only in procedural statements.

Solution

To workaround this limitation, assign the value of the attribute expression to a variable, then use the variable in the SQL statement. For example, replace the statement INSERT INTO audits VALUES (c1%ROWCOUNT, …); with the following statements: row_count := c1%ROWCOUNT; INSERT INTO audits VALUES (row_count, …);

Share:

Leave a Reply

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...