Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP General (http://www.velocityreviews.com/forums/f65-asp-general.html)
-   -   Provider error '8007000e' (http://www.velocityreviews.com/forums/t796047-provider-error-8007000e.html)

Dayron 08-25-2004 06:21 AM

Provider error '8007000e'
 
Hi, I use ASP code to generate report that I retrieve about 100,000 to
800,000 records from database using ADODB.Recordset. But when i run the
code, it show me the following error.

Provider error '8007000e'
Not enough storage is available to complete this operation.
/e-survey/progress3.asp, line 192


Here is my code:
L188: Set rst = server.CreateObject("ADODB.RecordSet")
L189: rst.Open strSQL, connection, 3, 3

L191: iProcessedSoFar = 0

L192: If Not rst.EOF Then
L193: arrRecords = rst.GetRows
L194: iTotalRecords = Ubound(arrRecords,2) + 1
L195: rst.MoveFirst
L196: End If

Wat does the error message means? is it memory error or coding error?
can anyone pls let me know?


*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

joker 08-25-2004 06:32 AM

Re: Provider error '8007000e'
 
I'd suggest the following articles since you didn't post enough
information for me to say just one of them.

http://www.aspfaq.com/show.asp?id=2131
http://www.aspfaq.com/show.asp?id=2301
http://www.aspfaq.com/show.asp?id=2355

Hopefully one of those will help you with this error.

Dayron wrote:

> Hi, I use ASP code to generate report that I retrieve about 100,000 to
> 800,000 records from database using ADODB.Recordset. But when i run the
> code, it show me the following error.
>
> Provider error '8007000e'
> Not enough storage is available to complete this operation.
> /e-survey/progress3.asp, line 192
>
>
> Here is my code:
> L188: Set rst = server.CreateObject("ADODB.RecordSet")
> L189: rst.Open strSQL, connection, 3, 3
>
> L191: iProcessedSoFar = 0
>
> L192: If Not rst.EOF Then
> L193: arrRecords = rst.GetRows
> L194: iTotalRecords = Ubound(arrRecords,2) + 1
> L195: rst.MoveFirst
> L196: End If
>
> Wat does the error message means? is it memory error or coding error?
> can anyone pls let me know?
>
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!



Carol Carrot 08-25-2004 06:48 AM

Re: Provider error '8007000e'
 
I had that error, and it was a networking error. not an asp error.

Could that be true for you?

"joker" <no-spam@netzero.com> wrote in message
news:O5Ygh2miEHA.1644@tk2msftngp13.phx.gbl...
> I'd suggest the following articles since you didn't post enough
> information for me to say just one of them.
>
> http://www.aspfaq.com/show.asp?id=2131
> http://www.aspfaq.com/show.asp?id=2301
> http://www.aspfaq.com/show.asp?id=2355
>
> Hopefully one of those will help you with this error.
>
> Dayron wrote:
>
> > Hi, I use ASP code to generate report that I retrieve about 100,000 to
> > 800,000 records from database using ADODB.Recordset. But when i run the
> > code, it show me the following error.
> >
> > Provider error '8007000e'
> > Not enough storage is available to complete this operation.
> > /e-survey/progress3.asp, line 192
> >
> >
> > Here is my code:
> > L188: Set rst = server.CreateObject("ADODB.RecordSet")
> > L189: rst.Open strSQL, connection, 3, 3
> >
> > L191: iProcessedSoFar = 0
> >
> > L192: If Not rst.EOF Then
> > L193: arrRecords = rst.GetRows
> > L194: iTotalRecords = Ubound(arrRecords,2) + 1
> > L195: rst.MoveFirst
> > L196: End If
> >
> > Wat does the error message means? is it memory error or coding error?
> > can anyone pls let me know?
> >
> >
> > *** Sent via Developersdex http://www.developersdex.com ***
> > Don't just participate in USENET...get rewarded for it!

>





All times are GMT. The time now is 02:06 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57