Compile an Object from Program Editor

Shai

Member
Hi,

I come across with a situation when I try to complie an object using program editor and the seesion end with "ORA-03114: not connected to ORACLE", when I execute the same from sql editor it's doesn't happend, where should I start to check.

Environment Profile:
Win XP SP3
Oracle 9i 9.2.07
PL/Sql Developer 7.1.5.1398

Many Thanks,
 
If a compilation causes such an error and works correctly in other tools, then I suspect a problem with the "debug information" mode. To verify this, go to Tools > Preferences > Debugger tab page, disable the "Add debug information when compiling" option, and retry the compilation.

You can also explicitly exclude specific objects from debug information. On the same debugger tab page you can add a line with the name (or owner.name) of the program unit to the "NEVER add debug info for objects" list.
 
Back
Top