I have two PLSQL functions in an Oracle database. Function A uses function B. Therefore to compile function A successfully function B must already be there.
When I use data pump to import the functions it is importing function A before function B, causing a compilation error. I then have to go into SQL Developer and recompile the function before it will work.
My question is, is there any way of making data pump import functions/procedures so that dependecies are loaded in first?
You can not change it unless you load them separately (dependent objects first).