<?xml version="1.0" encoding="UTF-8"?>











<rss version="2.0" xmlns:jf="http://www.jivesoftware.com/xmlns/jiveforums/rss">



<channel>
    <title>Support Forums: Message List - How to overcome maximum open cursors error</title>
    <link>http://www.theserverside.com</link>
    <description>Most recent forum messages</description>
    <language>en</language>
    
        <generator>Jive Forums Silver 5.5.30 (www.jivesoftware.com)</generator>
    
    <pubDate>Thu, 23 May 2013 11:10:00 -0400</pubDate>


    <item>

        <title>chitu</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=25583</link>

        

        
            <description><![CDATA[<p>this may occur in recursive calling of the code.</p>
<p>&nbsp;</p>
<p>just increase your cursor limit in the databese configurationj file.</p>]]></description>
        

        <pubDate>Thu, 03 Nov 2011 04:29:32 -0400</pubDate>

        

        <jf:creationDate>Thu, 03 Nov 2011 04:29:32 -0400</jf:creationDate>
        <jf:modificationDate>Thu, 03 Nov 2011 04:29:32 -0400</jf:modificationDate>
        <jf:date>Nov 3, 2011</jf:date>
        <jf:author>ravipati chaitanya</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>re: how can we use the resultset?</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=25583</link>

        

        
            <description><![CDATA[You don't have to close the ResultSet immediately afterwards ... you can do your work and then close the ResultSet.  So, don't create a Collection of ResultSet objects.  Get one, do your thing, then get the next, etc.<br><br>This exception is triggered...]]></description>
        

        <pubDate>Wed, 29 Mar 2006 17:17:39 -0500</pubDate>

        

        <jf:creationDate>Wed, 29 Mar 2006 17:17:39 -0500</jf:creationDate>
        <jf:modificationDate>Wed, 29 Mar 2006 17:17:39 -0500</jf:modificationDate>
        <jf:date>Mar 29, 2006</jf:date>
        <jf:author>Cool Dude</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>how can we use the resultset?</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=25583</link>

        

        
            <description><![CDATA[Hi, <br><br>&nbsp;How can we use the result set if we are closing after every Iteration? It will give exception.]]></description>
        

        <pubDate>Fri, 24 Feb 2006 05:13:27 -0500</pubDate>

        

        <jf:creationDate>Fri, 24 Feb 2006 05:13:27 -0500</jf:creationDate>
        <jf:modificationDate>Fri, 24 Feb 2006 05:13:27 -0500</jf:modificationDate>
        <jf:date>Feb 24, 2006</jf:date>
        <jf:author>Yasoda Supraja</jf:author>
        <jf:replyCount>1</jf:replyCount>
    </item>


    <item>

        <title>close all the resources</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=25583</link>

        

        
            <description><![CDATA[We had the same problem in our application. We were using a connection object and executing queries<br>n times within a loop and not closing ResultSet/Statement object at the end of each loop iteration<br>We closed all the ResultSet/Statement object...]]></description>
        

        <pubDate>Wed, 28 Apr 2004 15:03:23 -0400</pubDate>

        

        <jf:creationDate>Wed, 28 Apr 2004 15:03:23 -0400</jf:creationDate>
        <jf:modificationDate>Wed, 28 Apr 2004 15:03:23 -0400</jf:modificationDate>
        <jf:date>Apr 28, 2004</jf:date>
        <jf:author>H Roy</jf:author>
        <jf:replyCount>2</jf:replyCount>
    </item>


    <item>

        <title>Close all the resources</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=25583</link>

        

        
            <description><![CDATA[Dont reuse connection, preparestatement and resultset ....]]></description>
        

        <pubDate>Wed, 28 Apr 2004 13:09:37 -0400</pubDate>

        

        <jf:creationDate>Wed, 28 Apr 2004 13:09:37 -0400</jf:creationDate>
        <jf:modificationDate>Wed, 28 Apr 2004 13:09:37 -0400</jf:modificationDate>
        <jf:date>Apr 28, 2004</jf:date>
        <jf:author>Kenneth Phang Tak Yan</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>How to overcome maximum open cursors error</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=25583</link>

        

        
            <description><![CDATA[1. All the resources (including cursors) are released when a connection is closed. <br>You may need to release unused cursors sooner by closing unused resultsets &lt;I would suggest a code review to fix this problem.<br>2. If problem still remains that...]]></description>
        

        <pubDate>Wed, 28 Apr 2004 10:41:53 -0400</pubDate>

        

        <jf:creationDate>Wed, 28 Apr 2004 10:41:53 -0400</jf:creationDate>
        <jf:modificationDate>Wed, 28 Apr 2004 10:41:53 -0400</jf:modificationDate>
        <jf:date>Apr 28, 2004</jf:date>
        <jf:author>Deepak Gupta</jf:author>
        <jf:replyCount>3</jf:replyCount>
    </item>


    <item>

        <title>How to overcome maximum open cursors error</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=25583</link>

        

        
            <description><![CDATA[How to overcome this error<br><br>java.sql.SQLException: ORA-01000: maximum open cursors exceeded<br><br>Iam not getting this error frequently. In rare instantce its happening.<br>Pls do let me know <br>1) In Which scenrios this error will come<br>2) How...]]></description>
        

        <pubDate>Wed, 28 Apr 2004 09:50:07 -0400</pubDate>

        

        <jf:creationDate>Wed, 28 Apr 2004 09:50:07 -0400</jf:creationDate>
        <jf:modificationDate>Wed, 28 Apr 2004 09:50:07 -0400</jf:modificationDate>
        <jf:date>Apr 28, 2004</jf:date>
        <jf:author>Srinivas Reddy Bijjam</jf:author>
        <jf:replyCount>6</jf:replyCount>
    </item>



</channel>
</rss>

