ScottMattes
Member³
PLSD 10
Oracle 11
Win 7
I gave up working last night when I kept getting ORA-03113: end-of-file on communication channel while trying to run a test window that i had just created (copied it from the one I had just gotten done using successfully).
This morning, after PC shutdown last night, but still the same problem.
My first thought had been some network error. This morning I went back to the test I had copied this from and that one worked.
Finally narrowed it down to a repeatable bare minimum.
This does give the 3113 error.
This gives the PLS-00456 item 'c_asdf' is not a cursor error.
In both case c_asdf is not a cursor.
Oracle 11
Win 7
I gave up working last night when I kept getting ORA-03113: end-of-file on communication channel while trying to run a test window that i had just created (copied it from the one I had just gotten done using successfully).
This morning, after PC shutdown last night, but still the same problem.
My first thought had been some network error. This morning I went back to the test I had copied this from and that one worked.
Finally narrowed it down to a repeatable bare minimum.
This does give the 3113 error.
Code:
begin
select 1 into :asdf from dual;
-- test statements here
open :c_asdf for
select *
from dual;
end;
This gives the PLS-00456 item 'c_asdf' is not a cursor error.
Code:
begin
-- test statements here
open :c_asdf for
select *
from dual;
end;
In both case c_asdf is not a cursor.