ORA-06508: PL/SQL: could not find program unit being called
Cause: An attempt was made to call a stored program that could not be found. The program may have been dropped or incompatibly modified, or have compiled with errors.
Action: Check that all referenced programs, including their package bodies, exist and are compatible.
Vérifiez que tous vos packages body sont valides avec:
SQL> select object_name, status from all_objects where object_type = 'PACKAGE BODY';
Et assurez-vous aussi que vous ne compilez pas le package alors qu'il est en train d'être exécuté par quelqu'un d'autre.
Partager