Hi,
I'm not really an Access developer, but took up the responsibility for implementing changes in an existing Access database.
I do have previous experience writing "raw" applications in Access and served as a Data Administrator (not DBA) in a big project.
The application is for a Non-Profit dress rental organization. It was written using Hebrew (RTL) in most DB objects, which makes it very difficult for me.
The programmer is a very capable self-learned programmer, but has a very weak understanding of DB principles, and no understanding of Basic Design Principles ( Open Closed, Dependency Inversion, Model-View-Controller etc.)
It has a BE of about 15 tables, Customer, DressStyle, DressInstance, Rental, RentalDetails, RentalPayment, RentalPaymentRecvd, Employees, EmployeeAttendance, ProgramPreferences and OrganizationPreferences. It was developed for another Organization that has similar Non-Profit rentals.
When I got the program, it had no Indexes or relations.
I added indexes for all the fields that were used in the Forms that had poor response time, but did not make any other changes to the underlying Data Model. For some reason, I did not add an Index to the CustomerID, as there were no business processes that looked up the Customer. Only in the Admin Forms was there the ability to look up the Rentals for a specific Customer, and I changed only the Data that hindered the daily use of the program.
The first and main form was the New Rental Form, which had :
This form worked fine for almost two years, but became very slow and error-prone in the last 6 months.
When I finally got around to checking it, I added five or six indexes to the tables in the BE and the problem was solved. As I was curious to know what the root problem was, I rolled back to on older BE and added the Indexes, one at a time to the fields that I thought were the root of the problem.
As the lag happened when choosing the dressInstances available for a specific date, I was sure the problem was the missing index in the Date fields of the table RentalDetails which saved the date that a specific instance was taken , but adding these Indexes did not alleviate the problem.
What did help was the Index on the CustomerID field in the Customer table.
Now there is no logical explanation that I can think of, except that there was some circular lock on some tables and this point in time, when a specific part of the Form was used. Maybe Access uses different locking strategies for a Indexed table???
So what's the lesson learned by me?
Not much, as I still strongly believe in the saying "If it ain't broken, don't fix it".
Sincerely,
Simon from the Holy Land.
I'm not really an Access developer, but took up the responsibility for implementing changes in an existing Access database.
I do have previous experience writing "raw" applications in Access and served as a Data Administrator (not DBA) in a big project.
The application is for a Non-Profit dress rental organization. It was written using Hebrew (RTL) in most DB objects, which makes it very difficult for me.
The programmer is a very capable self-learned programmer, but has a very weak understanding of DB principles, and no understanding of Basic Design Principles ( Open Closed, Dependency Inversion, Model-View-Controller etc.)
It has a BE of about 15 tables, Customer, DressStyle, DressInstance, Rental, RentalDetails, RentalPayment, RentalPaymentRecvd, Employees, EmployeeAttendance, ProgramPreferences and OrganizationPreferences. It was developed for another Organization that has similar Non-Profit rentals.
When I got the program, it had no Indexes or relations.
I added indexes for all the fields that were used in the Forms that had poor response time, but did not make any other changes to the underlying Data Model. For some reason, I did not add an Index to the CustomerID, as there were no business processes that looked up the Customer. Only in the Admin Forms was there the ability to look up the Rentals for a specific Customer, and I changed only the Data that hindered the daily use of the program.
The first and main form was the New Rental Form, which had :
- section for adding ( or choosing) a Customer,
- choosing the date of the wedding ( or whatever) and then
- a combo-box list for choosing the dress-style-number, size and amount.
This form worked fine for almost two years, but became very slow and error-prone in the last 6 months.
When I finally got around to checking it, I added five or six indexes to the tables in the BE and the problem was solved. As I was curious to know what the root problem was, I rolled back to on older BE and added the Indexes, one at a time to the fields that I thought were the root of the problem.
As the lag happened when choosing the dressInstances available for a specific date, I was sure the problem was the missing index in the Date fields of the table RentalDetails which saved the date that a specific instance was taken , but adding these Indexes did not alleviate the problem.
What did help was the Index on the CustomerID field in the Customer table.
Now there is no logical explanation that I can think of, except that there was some circular lock on some tables and this point in time, when a specific part of the Form was used. Maybe Access uses different locking strategies for a Indexed table???
So what's the lesson learned by me?
Not much, as I still strongly believe in the saying "If it ain't broken, don't fix it".
Sincerely,
Simon from the Holy Land.
Last edited: