andrewmrichards
Registered User.
- Local time
- Today, 22:32
- Joined
- Mar 15, 2012
- Messages
- 18
Hi all
I'm developing a database for a client. It's currently split into an Access front end and Access back end, although the plan is to migrate to a SQL back end next year.
To give an idea of scale, the back end contains 40 tables, and is just over 10mb. As you can tell, it doesn't yet contain a huge amount of data, as we're still in development.
The front end is around 16mb. It has 8 local temp tables, plus a couple dozen queries and around 80 forms.
All the tables are properly related and have indexed key fields.
Some of the queries are fairly complex, and include calls to custom functions.
The database includes code to maintain a constant connection to the back end, so that the .laccdb file isn't constantly being created and destroyed.
Here's the issue. I've developed the database on a laptop, and it performs very well, with screens opening instantly, as you'd expect. Obviously, you would also expect to find a difference in performance when putting the database into the live environment, where the back end sits on a networked drive. But we've been seeing a HUGE performance hit, to the point when the database becomes unworkable. The first screen (after logging on) displays a list of information, along with various filtering tools. Yes, the query behind it is fairly complex, calling on other queries, and (as mentioned) one or two UDFs. But that screen is taking 3 minutes to load! Selecting an item from the list in order to view the details in another form (which is a much simpler form, albeit with a subform) results in a delay of another 1.5 minutes. Switching to a different list form (a much simpler one) takes anything from 1 to 3 minutes, depending on which list is selected.
I fully accept that it may be that I need to look at optimising some of these queries. But I've developed a lot of databases over many years, often with complex queries, for various clients in various environments, and never seen performance like this, even with databases with >1m rows in tables being queried.
So here's the testing we've so far undertaken at my client's office:
1. Put the front end on a different laptop for a different user to test (everyone at this organisation uses laptops) - no change to performance
2. Switch the front end laptops between wired and wireless connections to the network - no change to performance
3. Move the back end to a different network drive, on a different server - no change to performance
I then tried a completely different environment. I set up a networked environment in my office, with a "server" PC and a "client" laptop connected via a domestic router. In this environment, a simple copying of the back end file from the server to the client (to test network speed) took 10 seconds. The same test in my customer's environment took less than 1 second, so obviously they don't have an issue with raw network speed. But running the database in my office with this test environment resulted in the initial (complex) list form opening in around 3 seconds, and other forms responding more or less instantly.
Finally, I've tested in another office, with a much more realistic network setting. Both my client and this other office are using Active Directory environments for managing logins, both have several hundred users logged in, proper commercial grade switches, routers and cabling etc etc. In this other "proper" office environment, albeit one where my "front end" machine is actually a virtual PC, and typically doesn't run particularly quickly, once again resulted in pretty much instantaneous response times for the database forms.
So now I'm stumped. As I said, I can accept that I might want to go back and see if I can optimise some of my queries, or some of my code. But I'd be expecting that this might result in shaving a couple of seconds off a form loading, taking it from 5 seconds to 3, perhaps. But what I'm seeing is in a different league, and I just don't buy that it's anything in my database design that's causing it.
Has anyone else come across issues like this? Can anyone offer suggestions? The people with whom I'm working have asked another guy in their office who's designed one or two databases, and his response was that he'd seen something similar with one of his databases, so he moved the back end tables onto SharePoint, but I'm really not wanting to do that. The IT department have said that there are "no known network issues at present" which was really helpful...
I'd be really grateful for thoughts or advice. Could it be virus scanning? Firewall issues? Help!
Many thanks
Andrew
I'm developing a database for a client. It's currently split into an Access front end and Access back end, although the plan is to migrate to a SQL back end next year.
To give an idea of scale, the back end contains 40 tables, and is just over 10mb. As you can tell, it doesn't yet contain a huge amount of data, as we're still in development.
The front end is around 16mb. It has 8 local temp tables, plus a couple dozen queries and around 80 forms.
All the tables are properly related and have indexed key fields.
Some of the queries are fairly complex, and include calls to custom functions.
The database includes code to maintain a constant connection to the back end, so that the .laccdb file isn't constantly being created and destroyed.
Here's the issue. I've developed the database on a laptop, and it performs very well, with screens opening instantly, as you'd expect. Obviously, you would also expect to find a difference in performance when putting the database into the live environment, where the back end sits on a networked drive. But we've been seeing a HUGE performance hit, to the point when the database becomes unworkable. The first screen (after logging on) displays a list of information, along with various filtering tools. Yes, the query behind it is fairly complex, calling on other queries, and (as mentioned) one or two UDFs. But that screen is taking 3 minutes to load! Selecting an item from the list in order to view the details in another form (which is a much simpler form, albeit with a subform) results in a delay of another 1.5 minutes. Switching to a different list form (a much simpler one) takes anything from 1 to 3 minutes, depending on which list is selected.
I fully accept that it may be that I need to look at optimising some of these queries. But I've developed a lot of databases over many years, often with complex queries, for various clients in various environments, and never seen performance like this, even with databases with >1m rows in tables being queried.
So here's the testing we've so far undertaken at my client's office:
1. Put the front end on a different laptop for a different user to test (everyone at this organisation uses laptops) - no change to performance
2. Switch the front end laptops between wired and wireless connections to the network - no change to performance
3. Move the back end to a different network drive, on a different server - no change to performance
I then tried a completely different environment. I set up a networked environment in my office, with a "server" PC and a "client" laptop connected via a domestic router. In this environment, a simple copying of the back end file from the server to the client (to test network speed) took 10 seconds. The same test in my customer's environment took less than 1 second, so obviously they don't have an issue with raw network speed. But running the database in my office with this test environment resulted in the initial (complex) list form opening in around 3 seconds, and other forms responding more or less instantly.
Finally, I've tested in another office, with a much more realistic network setting. Both my client and this other office are using Active Directory environments for managing logins, both have several hundred users logged in, proper commercial grade switches, routers and cabling etc etc. In this other "proper" office environment, albeit one where my "front end" machine is actually a virtual PC, and typically doesn't run particularly quickly, once again resulted in pretty much instantaneous response times for the database forms.
So now I'm stumped. As I said, I can accept that I might want to go back and see if I can optimise some of my queries, or some of my code. But I'd be expecting that this might result in shaving a couple of seconds off a form loading, taking it from 5 seconds to 3, perhaps. But what I'm seeing is in a different league, and I just don't buy that it's anything in my database design that's causing it.
Has anyone else come across issues like this? Can anyone offer suggestions? The people with whom I'm working have asked another guy in their office who's designed one or two databases, and his response was that he'd seen something similar with one of his databases, so he moved the back end tables onto SharePoint, but I'm really not wanting to do that. The IT department have said that there are "no known network issues at present" which was really helpful...
I'd be really grateful for thoughts or advice. Could it be virus scanning? Firewall issues? Help!
Many thanks
Andrew