Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We have an MS Access 2003 ADP application with SQL Server. Sometimes, without any apparent reason, this application starts consuming 100% of CPU time (50% on a dual-core CPU system). This is what Windows Task Manager and other process monitoring/analysis tools are showing, anyway. Usually, the only way to stop such CPU thrashing is to restart the application.

We still don't know how to trigger this problem at will. But I have a feeling that it usually happens when some of the forms get closed by a user.

NB: Recently we noticed that one of the forms consistently makes CPU usage raise to 100% whenever it gets minimized. Most of the time CPU usage goes back to normal when that form is "un-minimized". Perhaps, it's a different problem, but we'd like to uncover this mystery, too. :)

Googling for a solution of this problem didn't yield very good results. The most frequent theory is that MS Access gets into some sort of waiting-for-events loop which is practically harmless, performance-wise, because the thread running that loop has very low priority. This doesn't seem to help us because in our case (a) it certainly does hurt the system's performance and (b) it's still unclear what exactly makes Access to get into such "bad state" and how to avoid that.

share|improve this question
1  
You really should go back and accept some of your previous answers... meta.stackoverflow.com/questions/5234/… – bdonlan Oct 18 '11 at 1:50
@bdonlan: I'd be happy to accept an answer when I got one. But if you take a closer look to all my questions (and there were just a few), unfortunately most of them simply didn't get anything close to an answer. – Yarik Oct 18 '11 at 2:14
that's unfortunate :/ Some people will skip over your question if they see a low accept rate, though, FYI. And I do see some questions you could accept - eg, stackoverflow.com/questions/1592251/… you could accept your own answer. – bdonlan Oct 18 '11 at 2:17
1  
there are a few nice answers here, too: stackoverflow.com/questions/290875/… – bdonlan Oct 18 '11 at 2:17
@bdonlan: I guess I didn't accept my own answer on stackoverflow.com/questions/1592251/… because I was waiting for alternatives and... then forgot about the problem. :-( I think it would be fair to accept it now - thank YOU for the reminder! :) – Yarik Oct 18 '11 at 2:35
show 3 more comments

2 Answers

I've gotten this CPU usage problem before in the past, but I don't remember if we ever discovered a solution or it just went away at some point.

In your post, you didn't mention reviewing the VBA. I'd recommend looking for a loop that under certain conditions becomes an endless loop.

share|improve this answer
Of course, VBA has been reviewed. Not guilty. :) – Yarik Oct 18 '11 at 21:13

I wonder if it is a hangover from this problem that access used to have in the "old" days

http://support.microsoft.com/kb/160819

Whilst the article does say it is fixed in versions >=2000 it still might be something.

share|improve this answer
That's one of the articles I've already found before asking this question. The article suggests that Access throttles CPU because it's actively polling its message queue, doing this only during first 20-30 seconds of its "idle time" and not really affecting performance of other processes. In our case neither of those explanations/symptoms seems to apply. It might very well be a "new version" of the old problem, though... :) – Yarik Oct 20 '11 at 3:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.