Freshman
Registered User.
- Local time
- Today, 20:06
- Joined
- May 21, 2010
- Messages
- 437
Hi all,
This is what I have:
tblOrders tbl and tblItems tbl with one-to-many relationship (ID Auto)
Items tbl also has a ItemsID (Auto)
I have a few frontend Users sharing the backend tables to update data.
The problem is that sometimes their internal server goes offline due to hardware issues but they need to keep on working offline.
So I created two local tables named tblOrdersOffline and tblItemsOffline with the exact same structure and relationship.
So now each User will populate his own local table while the server is offline.
When they go online again, I need to merge each of the local tables to the main backend table ensuring correct relationships.
Is there a build-in function I can use of will I have to resolve to coding a solution?
I did look at Append Query but I can only append to a table not to a combined query. So I have to do each table separately (tblOrdersOffline to tblOrders and then tblItemsOffline to tblItems). I however foresee a problem when the process is automated (checking for server to be online and then merging) that multiple Users will merge at the same time and because I'm dealing with having to append 2 tables it might cause problems in between the processes.
Thanks
Pierre
This is what I have:
tblOrders tbl and tblItems tbl with one-to-many relationship (ID Auto)
Items tbl also has a ItemsID (Auto)
I have a few frontend Users sharing the backend tables to update data.
The problem is that sometimes their internal server goes offline due to hardware issues but they need to keep on working offline.
So I created two local tables named tblOrdersOffline and tblItemsOffline with the exact same structure and relationship.
So now each User will populate his own local table while the server is offline.
When they go online again, I need to merge each of the local tables to the main backend table ensuring correct relationships.
Is there a build-in function I can use of will I have to resolve to coding a solution?
I did look at Append Query but I can only append to a table not to a combined query. So I have to do each table separately (tblOrdersOffline to tblOrders and then tblItemsOffline to tblItems). I however foresee a problem when the process is automated (checking for server to be online and then merging) that multiple Users will merge at the same time and because I'm dealing with having to append 2 tables it might cause problems in between the processes.
Thanks
Pierre
Last edited: