How to fix the Oracle error PLS-00462: nested subprogram ‘string’ has to be REPEATABLE?
In this post, you’ll learn more about the Oracle ErrorPLS-00462: nested subprogram ‘string’ has to be REPEATABLE with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
PLS-00462: nested subprogram ‘string’ has to be REPEATABLE
Reason for the Error PLS-00462: nested subprogram ‘string’ has to be REPEATABLE
the nested subprogram of a REPEATABLE subprogram is not declared as REPEATABLE. If a subprogram is REPEATABLE, all of its nested subprograms has to be declared as REPEATABLE.
How to fix the Error PLS-00462: nested subprogram ‘string’ has to be REPEATABLE ?
You can fix this error in Oracle by following the below steps
declared the nested subprogram as REPEATABLE
Leave Your Comment