Transfer Text Action

StephenD

Registered User.
Local time
Today, 14:02
Joined
Nov 23, 2001
Messages
38
Hi,

I'm currently setting up a database that every month will import a txt file of around 1 million records-I think I'll be using the transfer text method. However, this appends records to existing tables-I want to first empty or clear the existing table to overwrite with the current data. Can this be done in one procedure?

Also can you get a message to come up saying 'import complete' or something similar?

Thanks!
 
You can use a delete query to remove the table just before you recreate it. Then you would do a msgbox("Transfer Complete") or something similar to that to notify the user.
 

Users who are viewing this thread

Back
Top Bottom