How to fix the Oracle error PCC-00119: Value of const variable in INTO clause will be modified?
In this post, you’ll learn more about the Oracle ErrorPCC-00119: Value of const variable in INTO clause will be modified with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
PCC-00119: Value of const variable in INTO clause will be modified
Reason for the Error PCC-00119: Value of const variable in INTO clause will be modified
Cause: A variable declared with the type specifier “const” was used in an INTO clause. Such variables should not be modified and should not be used in an INTO clause.
How to fix the Error PCC-00119: Value of const variable in INTO clause will be modified ?
You can fix this error in Oracle by following the below steps
Action: Check the spelling of all identifiers in the INTO clause. If necessary, remove “const” from the host variable declaration or use a different host variable.
Leave Your Comment