Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> ORA-01001: invalid cursor ORA-06512

ORA-01001: invalid cursor ORA-06512

From: BrianK <byankeyster_at_gmail.com>
Date: 16 Jun 2006 13:49:43 -0700
Message-ID: <1150490983.812807.47110@i40g2000cwc.googlegroups.com>


I am using ODP.net and randomly receive the following error:

ORA-01001: invalid cursor ORA-06512

when trying to execute a stored procedure with this structure:

CREATE OR REPLACE PROCEDURE ...
AS
 BEGIN
update ...
where ....

update ...
where ....
and
(
exists (select .... WHERE ....)
or ....
);
END; After it happens the first time the the error repeats itself until I restart the oracle service. Version 10.2

I am new to oracle and dont even understand why there is a cursor error when I am not even using cursors.

Any ideas?

Thanks Received on Fri Jun 16 2006 - 15:49:43 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US