How to fix the Oracle error PLS-00429: unsupported feature with RETURNING clause?
In this post, you’ll learn more about the Oracle ErrorPLS-00429: unsupported feature with RETURNING clause with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
PLS-00429: unsupported feature with RETURNING clause
Reason for the Error PLS-00429: unsupported feature with RETURNING clause
Cause:
– INTO clause and RETURNING clause cannot be use in the same statement
– RETURNING clause is currently not supported for object type columns, LONG columns, records, %rowtypes, remote tables and INSERT with subquery. This is as ORA-28815.
How to fix the Error PLS-00429: unsupported feature with RETURNING clause ?
You can fix this error in Oracle by following the below steps
Use separate select statement to get the values.
Leave Your Comment