Max number of cursors opened exceeded

J

Juliano.net

I have an ASP.Net web site built on C# that uses Oracle database, in
some pages, I get an error "max number of cursors opened exceeded".

I've a tipo on www.CodeProject.com that asks to call Dispose method for
every Command object. So I made this, but I'm still receiving this
error message.

How can I fix this?
 
G

Guest

This sounds more like an Oracle server-side programming issue than a
"dispose" issue. If the database is telling you that you've opened too many
cursors, it's most likely that you have done so. You need to look into how to
close your cursors in the database when you are done with them.
Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top