recreating a table on a daily basis

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a table of vendors that is based on a frequently updated table in
another incompatible database. I can create a textfile of the vendors from
the other data base and import it, but I haven't figured out how to automate
that. Also, the table I am recreating has other tables linked to it. What
happens to these links when I recreate the table? Does anyone have any
suggestions as to what I should do?
 
Don't delete the table, just empty it.

Use transfertext to import the text file into a dummy table
Then write an append query to read the dummy table and add records to
your table.

If there are other linked tables, you may end up with orphaned links if
the reference is not reloaded. And if the other tables are normalized
then you have an even harder problem since essentially you have
destroyed the links.

Basically we are saying we need more information in order to describe
what will happen.

Ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top