This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author p_noblebose
Recipients p_noblebose
Date 2010-02-10.14:58:26
SpamBayes Score 6.760314e-07
Marked as misclassified No
Message-id <1265813909.95.0.996847795707.issue7899@psf.upfronthosting.co.za>
In-reply-to
Content
we are executing two queries and storing the result sets  and matching the data.

the table has got around 8 million records and while executing the same i am getting the Memory Issue.

TRACE Arguments: [ <DatabaseLibrary.resultset.Resultset instance at 0x01750828> | <DatabaseLibrary.resultset.Resultset instance at 0x01750E68> ] 
FAIL MemoryError 

DEBUG Traceback (most recent call last):

 File "c:\python26\lib\site-packages\DatabaseLibrary\__init__.py", line 52, in resultsets_should_match
   resultset1.matches_with(resultset2)
 File "c:\python26\lib\site-packages\DatabaseLibrary\resultset.py", line 37, in matches_with
   for row_a, row_b in zip(self, other): 


Please let me know how to resolve this issue
History
Date User Action Args
2010-02-10 14:58:30p_noblebosesetrecipients: + p_noblebose
2010-02-10 14:58:29p_noblebosesetmessageid: <1265813909.95.0.996847795707.issue7899@psf.upfronthosting.co.za>
2010-02-10 14:58:28p_nobleboselinkissue7899 messages
2010-02-10 14:58:26p_noblebosecreate