vote up 1 vote down star
2

The problem:

We use a program written by our biggest customer to receive orders, book tranports and do other order-related stuff. We have no other chance but to use the program and the customer is very unsupportive when it comes to problems with their program. We just have to live with the program.

Now this program is most of the time extremely slow when using it with two or more user so I tried to look behind the curtain and find the source of the problem.

Some points about the program I found out so far:

  • It's written in VB 6.0
  • It uses a password-protected Access-DB (Access 2000 MDB) that is located a folder on one user's machine.
  • That folder is shared over the network and used by all other users.
  • It uses the msjet40.dll version 4.00.9704 to communicate with access. I guess it's ADO?

I also used Process Monitor to monitor file access and found out why the program is so slow: it is doing thousands of read operations on the mdb-file, even when the program is idle. Over the network this is of course tremendously slow:

Process Monitor Trace

The real question:

Is there any way to monitor the queries that are responsible for the read activity? Is there a trace flag I can set? Hooking the JET DLL's? I guess the program is doing some expensive queries that are causing JET to read lots of data in the process.

PS: I already tried to put the mdb on our company's file server with the success that accessing it was even slower than over the local share. I also tried changing the locking mechanisms (opportunistic locking) on the client with no success.

I want to know what's going on and need some hard facts and suggestions for our customer's developer to help him/her make the programm faster.

flag

50% accept rate

7 Answers

vote up 3 vote down check

To get your grubby hands on exactly what Access is doing query-wise behind the scenes there's an undocumented feature called JETSHOWPLAN - when switched on in the registry it creates a showplan.out text file. The details are in this article: link text (http://articles.techrepublic.com.com/5100-22-5064388.html)

For tracking down nightmare problems it's unbeatable - it's the sort of thing you get on your big expensive industrial databases - this feature is cool - it's lovely and fluffy - it's my friend… ;-)

Cheers, Dave

link|flag
Wow, I totally hoped to get an answer like this and now there it is :) Many many thanks! – VVS Apr 25 at 16:54
vote up 0 vote down

It is not possible without the help of the developers. Sorry.

link|flag
vote up 0 vote down

First question: Do you have a copy of MS Access 2000 or better?

If so: When you say the MDB is "password protected", do you mean that when you try to open it using MS Access you get a prompt for a password only, or does it prompt you for a user name and password? (Or give you an error message that says, "You do not have the necessary permissions to use the foo.mdb object."?)

If it's the latter, (user-level security), look for a corresponding .MDW file that goes along with the MDB. If you find it, this is the "workgroup information file" that is used as a "key" for opening the MDB. Try making a desktop shortcut with a target like:

"Path to MSACCESS.EXE" "Path To foo.mdb" /wrkgrp "Path to foo.mdw"

MS Access should then prompt you for your user name and password which is (hopefully) the same as what the VB6 app asks you for. This would at least allow you to open the MDB file and look at the table structure to see if there are any obvious design flaws.

Beyond that, as far as I know, Eduardo is correct that you pretty much need to be able to run a debugger on the developer's source code to find out exactly what the real-time queries are doing...

link|flag
vote up 0 vote down

Eduardo is right that it's not possible without the help of the developers - specifically, you need the source code of the application.

link|flag
vote up 1 vote down

Could you not throw a packet sniffer (like Wireshark) on the network and watch the traffic between one user and the host machine?

link|flag
Hmm, I'm not sure if I will see anything useful there but it's worth a try. – VVS Apr 25 at 16:56
vote up 1 vote down

If it uses an ODBC connection you can enable logging for that.

  1. Start ODBC Data Source Administrator.
  2. Select the Tracing tab
  3. Select the Start Tracing Now button.
  4. Select Apply or OK.
  5. Run the app for awhile.
  6. Return to ODBC Administrator.
  7. Select the Tracing tab.
  8. Select the Stop Tracing Now button.
  9. The trace can be viewed in the location that you initially specified in the Log file Path box.
link|flag
vote up 0 vote down

We're having the same issue here and we are trying the JETSHOWPLAN tips, but we cannot find the SHOWPLAN.OUT in the HD. Any tip?

All the best, Pedro.

link|flag
Should be created in the current working folder I believe. You could try using a SysInternals tool like ProcessMonitor to see whether any files are being written at all? technet.microsoft.com/en-us/sysinternals/… – MarkJ Dec 8 at 13:14
Or it might be in "My Documents"? msdn.microsoft.com/en-us/library/… – MarkJ Dec 8 at 13:15
I believe the showplan log goes into the current directory, which you can check in Access with CurDir(), but I'm not entirely certain of that -- it's kind of tricky to test. – David W. Fenton Dec 8 at 22:29

Your Answer

Get an OpenID
or

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