We are currently running oracle 10g Application server with 10g developer suite but with a 11g database.
When we compile a form while connected to our 11g database and run it on the 10g application server, we get a ORA-06508. We have traced this to a call to a package that is contained within the form (not a atached PLL or in the database).
When we compile against a historic 10g database everything works exactly as it should.
call is just...
pkg_name.procedure_name;
and specification of this package is
procedure_name(arg1 varchar2(100) default null);
We cannot continue to compile against the old database, Any assistance in trying to track this error would be appreciated.