web analytics

ORA-06508: PL/SQL: could not find program unit being called

Options

codeling 1595 - 6639
@2016-03-22 16:33:43

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.

@2016-03-22 16:36:47

You can run this query to find invalid objects, which may cause the ORA-06508 error:

select  *

from all_objects

where status = 'INVALID'

  and owner = 'DEV'; --your schema name

Comments

You must Sign In to comment on this topic.


© 2024 Digcode.com