Here is the issue: My database has linked tables to our mainframe computer. Records are being update throughout the day on the mainframe. In my database, I have a table which is an exact copy of the linked table, but not linked.
Currently in my database, when you enter it, I delete all the records out of the copy table, and then do an append query from the linked table to the copy table, to populate the copy table with all of the most current records.
The problem is that if a user is already in the database, and then another user enters the database, it will then do a delete and append routine. This is a problem for the person already in the database. One last item to mention. My database uses pretty much 1 form, so I can't expect the user to move back and forth between forms to do a refresh. They leave they database open all day, on the same form.
How can I display the most current records for the new person entering the database, without interfering with the people already in the database?
Currently in my database, when you enter it, I delete all the records out of the copy table, and then do an append query from the linked table to the copy table, to populate the copy table with all of the most current records.
The problem is that if a user is already in the database, and then another user enters the database, it will then do a delete and append routine. This is a problem for the person already in the database. One last item to mention. My database uses pretty much 1 form, so I can't expect the user to move back and forth between forms to do a refresh. They leave they database open all day, on the same form.
How can I display the most current records for the new person entering the database, without interfering with the people already in the database?