HomeOracleOracle Error PLS-00452: Subprogram ‘string’ violates its associated pragma

Oracle Error PLS-00452: Subprogram ‘string’ violates its associated pragma

Oracle Error Message

PLS-00452: Subprogram ‘string’ violates its associated pragma

Reason for the Error

A packaged function cannot be called from SQL statements unless its purity level is asserted by coding a RESTRICT_REFERENCES pragma in the package specification. The pragma, which is used to control side effects, tells the PL/SQL compiler to deny the packaged function read/write access to database tables, public packaged variables, or both. A SQL statement that violates the pragma will cause a compilation error.

Solution

Raise the purity level of the function, or relax the pragma restrictions.

Share:

Leave A Reply

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

You May Also Like

Oracle Error Message CLSGN-32767: Internal error. Reason for the Error An unexpected error occurred. Solution Examine the message(s) that accompany...
Oracle Error Message CLSGN-00211: OCR batch operation failed. string Reason for the Error Setting a set of Oracle Cluster Registry...
Oracle Error Message CLSGN-00210: failed to get value for OCR key “string”. string Reason for the Error It was not...