How to fix the Oracle error PLS-00593: default value of parameter “string” in body must match that of spec?
In this post, you’ll learn more about the Oracle ErrorPLS-00593: default value of parameter “string” in body must match that of spec with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
PLS-00593: default value of parameter “string” in body must match that of spec
Reason for the Error PLS-00593: default value of parameter “string” in body must match that of spec
The default value initialization of a parameter in a subprogram body contained in a package body did not match that of the corresponding subprogram specification in the corresponding package specification.
How to fix the Error PLS-00593: default value of parameter “string” in body must match that of spec ?
You can fix this error in Oracle by following the below steps
Change the default initialization of the parameter in body to match that of spec.
Leave Your Comment