Maximum open cursors exceeded error [message #59363] |
Thu, 13 November 2003 10:42 |
Josh
Messages: 9 Registered: August 1999
|
Junior Member |
|
|
java.lang.Exception: CxConnectionProxy.handleException: the database connection
is bad and cannot be safely replaced (the connection failure occurred in the mid
dle of a transaction). java.sql.SQLException: ORA-01000: maximum open cursors ex
ceeded
Can someone tell me how i close the cursors using sql plus or toad?
Thanx
|
|
|
|
|
Re: Maximum open cursors exceeded error [message #59381 is a reply to message #59363] |
Fri, 14 November 2003 07:35 |
Thiru
Messages: 1089 Registered: May 2002
|
Senior Member |
|
|
Long term soln would be to fix your app to close the cursors appropriately,whenever you are done.
You could do a alter system flush shared_pool; to close most of the cursors , but this is not the ideal way to do it. It flushes most of the contents of shared pool.
|
|
|