Welcome to dbFreaks.com!
FAQFAQ   SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

System resource exceeded

 
   Database Help (Home) -> Visual Basic -> ODBC RSS
Related Topics:
HOWTO: Clone SQL db ? - Hi all, I'm having a SQL Server database called X. For testing and training, I would like to make a copy of the entire DB to Y. This copy should include all data, indexes, views, etc. all my attempts to automate this..

Change connect string for Excel Queries using an ODBC Driver - ODBC for MAS90 MAS200 In Excel we have an ODBC String with a physical (hard coded) path to the data. We have changed the servers. We do not want to recreate all of the queries. How can we edit the ODBC path inside of..

ISA 2006 with My sql Connection - Hi, Please help I am facing problem with ISA 2006.It does not connect Mysql data base. It is giving connect to Mysql server on

Compile Error - Can anyone please help me to solve this problem I have when I tried to compile and run my program written in VB 6.0? Problem: I used variable such as db as Database and ws as I use ODBC way to connect my VB form interface with..

ISAM driver query - Hi, I am developer in Visual Basic 6.0 and SP4 and database use MS Access XP and SQL 7.0. This field last 6years and I am use Clipper 5.3, and Foxpro 2.6, Dbase At now I am totaly convert in VB so I am..
Next:  VB6 Application Keeps Hanging????  
Author Message
Dave132

External


Since: Nov 29, 2004
Posts: 1



(Msg. 1) Posted: Mon Nov 29, 2004 8:07 am
Post subject: System resource exceeded
Archived from groups: microsoft>public>vb>database>odbc (more info?)

I'm receiving the error,

Microsoft OLE DB Provider for ODBC Drivers (0x8007000E)
[Microsoft] [ODBC dBase Driver] System resource exceeded.
/_ScriptLibrary/Recordset.asp, line 200

This web program works perfectly for about four days and then stops working
giving the error above. If I reboot the server everything starts working
again for
about four days. Is there any way to reset this connection without rebooting
the server?

Thanks in advance.

 >> Stay informed about: System resource exceeded 
Back to top
Login to vote
Kevin Yu MSFT

External


Since: Nov 20, 2003
Posts: 67



(Msg. 2) Posted: Tue Nov 30, 2004 2:33 am
Post subject: RE: System resource exceeded [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hi Dave,

First of all, I would like to confirm my understanding of your issue. From
your description, I understand that you're receiving an "System resource
exceeded." error after running a web program for about 4 days. If there is
any misunderstanding, please feel free to let me know.

This error might be caused by many reason. Sometimes a constantly opened
connection to the database or an opened Recordset which consumes a lot of
resources might generate this issue. Please try to go through your code to
see if all the connections or recordsets are closed properly and the
references to them have been set to Nothing after they become useless.
Also, we can try to open the Recordset with less resource consuming cursor
types. For example, open it with a dynamic cursor will be better.

HTH.

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."

 >> Stay informed about: System resource exceeded 
Back to top
Login to vote
Dave172

External


Since: Aug 26, 2004
Posts: 11



(Msg. 3) Posted: Tue Nov 30, 2004 7:35 am
Post subject: RE: System resource exceeded [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Yes that is correct. However there are several web apps running on the server
which access the same database, and I have no control over the one app, other
than to start and stop it. That's why I asked was there a way to just close
all open ODBC connections, or reset the ODBC connections without rebooting
the server so the down time would be just the reset time versus a 2-4min
reboot.

I will go through my code again however and look to see if connections are
closed properly.

"Kevin Yu [MSFT]" wrote:

> Hi Dave,
>
> First of all, I would like to confirm my understanding of your issue. From
> your description, I understand that you're receiving an "System resource
> exceeded." error after running a web program for about 4 days. If there is
> any misunderstanding, please feel free to let me know.
>
> This error might be caused by many reason. Sometimes a constantly opened
> connection to the database or an opened Recordset which consumes a lot of
> resources might generate this issue. Please try to go through your code to
> see if all the connections or recordsets are closed properly and the
> references to them have been set to Nothing after they become useless.
> Also, we can try to open the Recordset with less resource consuming cursor
> types. For example, open it with a dynamic cursor will be better.
>
> HTH.
>
> Kevin Yu
> =======
> "This posting is provided "AS IS" with no warranties, and confers no
> rights."
>
>
 >> Stay informed about: System resource exceeded 
Back to top
Login to vote
Kevin Yu MSFT

External


Since: Nov 20, 2003
Posts: 67



(Msg. 4) Posted: Wed Dec 01, 2004 9:48 am
Post subject: RE: System resource exceeded [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hi Dave,

I think there is no way for us to reset a single ODBC connection to certain
data source other than restarting the whole application. Thanks for
checking the code. If there's anything unclear, please feel free to reply
to the post.

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."
 >> Stay informed about: System resource exceeded 
Back to top
Login to vote
Uneditdwill

External


Since: Feb 03, 2005
Posts: 1



(Msg. 5) Posted: Thu Feb 03, 2005 7:32 pm
Post subject: Re: System resource exceeded [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hello there... I am experiencing the same problem. I have found that
when i receive this message (about every hour with the amount of
traffic) it is the inetinfo.exe that has crashed and will no longer
serve up any pages. I have been using IISRECYLE to look at the process
and if it gets over a certain memory limit it stops IIS and restarts it.
This allows my ODBC connections to resume as normal. What i have not
figured out is who the Non-pool memory on inetinfo.exe runs out of
control and crashed the process in the first place. If you have any
ideas.... I recently installed an Informix SDK to the server as well,
and updated to mdac2.8 for some history.

THansk

William

Kevin Yu [MSFT] wrote:
> *Hi Dave,
>
> I think there is no way for us to reset a single ODBC connection to
> certain
> data source other than restarting the whole application. Thanks for
> checking the code. If there's anything unclear, please feel free to
> reply
> to the post.
>
> Kevin Yu
> =======
> "This posting is provided "AS IS" with no warranties, and confers no
> rights." *



--
Uneditdwill
------------------------------------------------------------------------
Posted via http://www.codecomments.com
------------------------------------------------------------------------
 >> Stay informed about: System resource exceeded 
Back to top
Login to vote
bill

External


Since: Apr 07, 2005
Posts: 1



(Msg. 6) Posted: Thu Apr 07, 2005 4:47 pm
Post subject: Re: System resource exceeded [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

One thing you can do versus a reboot is to use taskmanager to find the
w3wp.exe process that is using inordinate amounts of RAM - kill that
process and the offending IIS instance will recover without destroying
other instances on the box.

Hope this helps!
Bill Dodd
mcsd, mcad, mcdba
me.DeleteThis@billdodd.net

Dave wrote:
> *Yes that is correct. However there are several web apps running on
> the server
> which access the same database, and I have no control over the one
> app, other
> than to start and stop it. That's why I asked was there a way to just
> close
> all open ODBC connections, or reset the ODBC connections without
> rebooting
> the server so the down time would be just the reset time versus a
> 2-4min
> reboot.
>
> I will go through my code again however and look to see if
> connections are
> closed properly.
>
> "Kevin Yu [MSFT]" wrote:
>
> > Hi Dave,
> >
> > First of all, I would like to confirm my understanding of your
> issue. From
> > your description, I understand that you're receiving an "System
> resource
> > exceeded." error after running a web program for about 4 days. If
> there is
> > any misunderstanding, please feel free to let me know.
> >
> > This error might be caused by many reason. Sometimes a constantly
> opened
> > connection to the database or an opened Recordset which consumes a
> lot of
> > resources might generate this issue. Please try to go through your
> code to
> > see if all the connections or recordsets are closed properly and
> the
> > references to them have been set to Nothing after they become
> useless.
> > Also, we can try to open the Recordset with less resource consuming
> cursor
> > types. For example, open it with a dynamic cursor will be better.
> >
> > HTH.
> >
> > Kevin Yu
> > =======
> > "This posting is provided "AS IS" with no warranties, and confers
> no
> > rights."
> >
> > *



--
bill
------------------------------------------------------------------------
Posted via http://www.codecomments.com
------------------------------------------------------------------------
 >> Stay informed about: System resource exceeded 
Back to top
Login to vote
Display posts from previous:   
   Database Help (Home) -> Visual Basic -> ODBC All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]