Robbyp2001
Registered User.
- Local time
- Today, 17:56
- Joined
- Oct 8, 2011
- Messages
- 143
Good morning folks
I have a database project that is held on an internal network. There are multiple users. Since the design is now finished, I would like to split the database.
When the database opens for the first time each day, a module runs, appending the contents of one table to an archive table and replacing the contents of the first table with fresh data. There are several other queries that run on first opening.
If (Forms!Switchboard![Date of Reg] >= Date) Then
' This code will allow the first user of the database to run the update of new records.
Exit Function
End If
‘After this, the system will bypass the updates thus allowing faster access.
Question 1: if the database is split, what will happen when each user subsequently opens the database?
Hopefully nothing will happen, but I'd like to get an opinion on it first.
Question 2: If the database is split, what is the best way to reconstruct as a stand-alone database (with the current data) sometime in the future if required. I was thinking of creating a blank database, then just importing everything from the back and front ends.
Is this possible or if not what is a better method.
Thanks folks
Rob
I have a database project that is held on an internal network. There are multiple users. Since the design is now finished, I would like to split the database.
When the database opens for the first time each day, a module runs, appending the contents of one table to an archive table and replacing the contents of the first table with fresh data. There are several other queries that run on first opening.
If (Forms!Switchboard![Date of Reg] >= Date) Then
' This code will allow the first user of the database to run the update of new records.
Exit Function
End If
‘After this, the system will bypass the updates thus allowing faster access.
Question 1: if the database is split, what will happen when each user subsequently opens the database?
Hopefully nothing will happen, but I'd like to get an opinion on it first.
Question 2: If the database is split, what is the best way to reconstruct as a stand-alone database (with the current data) sometime in the future if required. I was thinking of creating a blank database, then just importing everything from the back and front ends.
Is this possible or if not what is a better method.
Thanks folks
Rob