How to fix the Oracle error PLS-00441: EXIT/CONTINUE statement may have a label here; ‘string’ is not a label?
In this post, you’ll learn more about the Oracle ErrorPLS-00441: EXIT/CONTINUE statement may have a label here; ‘string’ is not a label with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
PLS-00441: EXIT/CONTINUE statement may have a label here; ‘string’ is not a label
Reason for the Error PLS-00441: EXIT/CONTINUE statement may have a label here; ‘string’ is not a label
The specified name was not a label. An EXIT or CONTINUE statement does not require a label, but when the optional name appears, it must be a label.
How to fix the Error PLS-00441: EXIT/CONTINUE statement may have a label here; ‘string’ is not a label ?
You can fix this error in Oracle by following the below steps
Check the spelling of the name. Make sure that the name is the label of a loop in which the EXIT or CONTINUE statement is nested. If a label is not needed for this statement, delete the name.
Leave Your Comment