How to fix the Oracle error PLS-00232: nested packages not permitted?
In this post, you’ll learn more about the Oracle ErrorPLS-00232: nested packages not permitted with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
PLS-00232: nested packages not permitted
Reason for the Error PLS-00232: nested packages not permitted
A package was declared inside another package, but package declarations are allowed only at the top level. In other words, packages cannot be nested.
How to fix the Error PLS-00232: nested packages not permitted ?
You can fix this error in Oracle by following the below steps
Move the package declaration outside the enclosing package.
Leave Your Comment