Quote:
Originally Posted by iheartvba
Hi guys,
Thanks to a lot of luck and help from you great people, I am on the verge of completing my first Database/Application.
but at the moment the Jet Engine back end is not able to handle the load
here are some specs re my database:
Back End: Access -> Jet Engine
Front Ends: Access -> Jet Engine
usually not more than 2 users accessing the database and the back end is stored on one of the users computers which is quite a new computer.
Here are some structural mistakes I believe that could be causing the problem:
1. Whenever I add a new record, I use ADO to connect to an entire table as a recordset, I would think that would be putting unnecessary load on the Jet back end, what is the most streamlined way to add a new record to a recordset.
2. I have external query objects (in the front ends), will external query objects put more load on my front end then SQL strings in VBA would?
Thank You Very Much
I think the guys got a little off the beaten path here (no offense).
1. noneed to use a an ado recordset when a simple insert statement or an append query would do the job. This would be much more efficient for adding a record to a table. This would also lead us to question 2.
2. Very good question, I would think a saved query would be the best bet for most circumstances, although this is something I would prefer to back up with documentation or a test with some Extremely large additions.