SQL> alter package apps.ad_parallel_updates_pkg compile body; Warning: Package Body altered with compilation errors. SQL> show errors Errors for PACKAGE BODY APPS.AD_PARALLEL_UPDATES_PKG: LINE/COL ERROR -------- ----------------------------------------------------------------- 338/8 PL/SQL: Statement ignored 338/8 PLS-00201: identifier 'DBMS_SYSTEM.SET_BOOL_PARAM_IN_SESSION' must be declared
STEPS TO RESOLVE
SQL> create public synonym dbms_system for dbms_system; Synonym created. SQL> grant execute on dbms_system to apps; Grant succeeded. SQL> alter package apps.ad_parallel_updates_pkg compile body; Package body altered. SQL>
No comments:
Post a Comment