From: Wing Siu on
Dear All

Sometime when I using my web applications, they prompt following error

Microsoft OLE DB Provider for SQL Server error '8007000e'

Not enough storage is available to complete this operation.


After I type "iisreset /restart" in the command prompt

Then everything running smooth

Do you know what's the problem?


From: Gale Coleman - LSND on
I assume you are using an access database and trying to connect to it from
an asp page. Try to use an OLE DB connection string instead of ODBC:

rcon.ConnectionString="Provider=microsoft.jet.oledb.4.0;" & _
"Data Source=c:\path\to\database.mdb"