Oracle Error PLS-00323: subprogram or cursor ‘string’ is declared in a package specification and must be defined in the package body

Oracle Error Message

PLS-00323: subprogram or cursor ‘string’ is declared in a package specification and must be defined in the package body

Reason for the Error

A subprogram specification was placed in a package specification, but the corresponding subprogram body was not placed in the package body. The package body implements the package specification. So, the package body must contain the definition of every subprogram declared in the package specification.

Solution

Check the spelling of the subprogram name. If necessary, add the missing subprogram body to the package body.

Share:

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

Oracle Error Message ORA-24328: illegal attribute value Reason for the Error The attribute value passed in is illegal. Solution Consult...
Oracle Error Message ORA-01346: LogMiner processed redo beyond specified reset log scn Reason for the Error LogMiner has detected a...
Oracle Error Message ORA-13241: specified dimensionality does not match that of the data Reason for the Error An error occurred...