Eljefegeneo
Still trying to learn
- Local time
- Today, 11:43
- Joined
- Jan 10, 2011
- Messages
- 902
Data Base has a backend and 6 front end users.
I have set up a form that allows the user to extract names from a table to send out an email blast from the database. Since there are two queries that select the data, I created a table into which these names are inserted. The code first deletes all records in a table from the previous user tblEmailBlast. Then it appends all the newly selected data into it. Works fine.
However, I have now learned that some users will be working from remote locations selecting records to include into the table for use in an email blast. Users use LogMeIn to access the DB on their "work" computer, so all have a separate front end. Presently the table is in the backend so this could possibly cause problems if two users decide to send out the email blast at the same time.
I was thinking that perhaps since this is a temporary table, it should be in each front end not the back end. But before I made any changes I wanted to know if I was setting myself up for future problems. I have searched the forum and it seems that temp tables may cause problems.
Just looking for yeas or nays on this before I rearrange the DB.
I have set up a form that allows the user to extract names from a table to send out an email blast from the database. Since there are two queries that select the data, I created a table into which these names are inserted. The code first deletes all records in a table from the previous user tblEmailBlast. Then it appends all the newly selected data into it. Works fine.
However, I have now learned that some users will be working from remote locations selecting records to include into the table for use in an email blast. Users use LogMeIn to access the DB on their "work" computer, so all have a separate front end. Presently the table is in the backend so this could possibly cause problems if two users decide to send out the email blast at the same time.
I was thinking that perhaps since this is a temporary table, it should be in each front end not the back end. But before I made any changes I wanted to know if I was setting myself up for future problems. I have searched the forum and it seems that temp tables may cause problems.
Just looking for yeas or nays on this before I rearrange the DB.