Suppose I have circuits A and B
In Scheme A I would like to call package X in Schema B However, in scheme A there is package B
A: package B B: package X
When I call from scheme A:
begin bxfoo(); end
he searches for procedure X in package B , i.e. ABX() , and receives an error message.
How can I fully qualify a call to force B be considered a schema name?
update:
- It seems that there is no way to cover the link for the
bxfoo . CREATE SYNONYM B_X for BX working. B_X.foo() calls the procedure in B_X.foo() B.
oracle plsql
Mark harrison
source share