ORA-04062 (Signature has been changed)
This error is cause when you have a master Schema & local schema, And the package Spec is not in sync with both the schema.
Solution:
Compile the package one more time in both the schema.
SELECT lpad(' ',level-1)||operation||' '||options||' '||
object_name "Plan"
FROM plan_table
CONNECT BY prior id = parent_id
AND prior statement_id = statement_id
START WITH id = 0 AND statement_id = '&1'
ORDER BY id;
EXPLAIN PLAN SET statement_id = <statement Name> FOR <Statement>;
EXPLAIN PLAN SET statement_id = 'example_plan1' FOR
SELECT full_name FROM per_all_people_f
WHERE UPPER(full_name) LIKE 'Pe%' ;