Hi,
I understand this is possible in a SQL database. But at this time, it isn't possible to upsize the backend to a SQL DB.
Having said that:
Each user has their own copy of the FrontEnd DB connected to the backend mdb. Only 4 users have 'write' rights to the backend. One of those users is responsible for performing a monthly update to the data. When this happens, I think it would be best that none of the other 'write' users have shared access to the backend. The update procedure takes anywhere from 5 min to 20 min.
There are two components to the update procedure: 1) If a member is a new member, their demographic data is immediately entered into the live backend Members table (generally there are very few new members per month); 2) If the member is an existing member, then any changes to that member's data is first made to a local copy of the members table. At the end of the update procedure, the local table batch updates the backend table using an Update query.
Is it possible to allow the updating user to have exclusive access to the backend while the update is being performed?
Of course one obvious way is to tell the other 3 'write' users to stay out of the DB while the update is taking place.
Any insights are greatly appreciated.
Thanks,
Vic
I understand this is possible in a SQL database. But at this time, it isn't possible to upsize the backend to a SQL DB.
Having said that:
Each user has their own copy of the FrontEnd DB connected to the backend mdb. Only 4 users have 'write' rights to the backend. One of those users is responsible for performing a monthly update to the data. When this happens, I think it would be best that none of the other 'write' users have shared access to the backend. The update procedure takes anywhere from 5 min to 20 min.
There are two components to the update procedure: 1) If a member is a new member, their demographic data is immediately entered into the live backend Members table (generally there are very few new members per month); 2) If the member is an existing member, then any changes to that member's data is first made to a local copy of the members table. At the end of the update procedure, the local table batch updates the backend table using an Update query.
Is it possible to allow the updating user to have exclusive access to the backend while the update is being performed?
Of course one obvious way is to tell the other 3 'write' users to stay out of the DB while the update is taking place.
Any insights are greatly appreciated.
Thanks,
Vic