How to fix the Oracle error PLS-00113: END identifier ‘string’ must match ‘string’ at line string, column string?
In this post, you’ll learn more about the Oracle ErrorPLS-00113: END identifier ‘string’ must match ‘string’ at line string, column string with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
PLS-00113: END identifier ‘string’ must match ‘string’ at line string, column string
Reason for the Error PLS-00113: END identifier ‘string’ must match ‘string’ at line string, column string
Following the keyword END, which terminates some language constructs (such as loops, blocks, functions, and procedures), you can optionally place the name of that construct. For example, at the end of the definition of loop L you might write END L. This error occurs when the optional name does not match the name given to the language construct. It is usually caused by a misspelled identifier or by faulty block structure.
How to fix the Error PLS-00113: END identifier ‘string’ must match ‘string’ at line string, column string ?
You can fix this error in Oracle by following the below steps
Make sure the spelling of the END identifier matches the name given to the language construct and that the block structure is correct.
Leave Your Comment