Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: How can I specify more rows in the exact fetch ?
Daniel Morgan <dmorgan_at_exesolutions.com> wrote in
news:3D00D94A.761CC389_at_exesolutions.com:
> Matthieu DEGLIN wrote:
> > This is quite unusual. Do you have any parallel processing going on? > > Does the above example cause the problem or only a version with a more > complex cursor and code that you have snipped? > > Have you attempted to isolate the exact line that, when executed, > causes the error? I am thinking that what you snipped and the fact that > your cursor definition is not the one you are really using may be > hiding the actual culprit. > > Daniel Morgan
Like Daniel said, the code you show here should have no problem that could cause that error. You probably were drawn to this code because of the word "fetch". It may not be an actual "fetch" statement which is causing the problem. This problem is most often caused by a statement of the form
SELECT column INTO variable FROM table WHERE ...
and there is more than one row in the table that satisfies the "where" clause.
-- Ken Denny http://www.kendenny.com/ Experience is something you don't get until just after you need it.Received on Fri Jun 07 2002 - 15:02:36 CDT
![]() |
![]() |