Indexing Linked Text Files.

G

Guest

Hi,

We have a central database which feeds information to another 12+ databases.

The main database has multiple text files linked from a shared network drive
which are updated daily. The databsse then copies the info into new tables
and shares this info out so it can be manipulated.

The problem we are encountering is that the tables wont hold their indexing
so everyday, we need to manually go in and re index all the tables to speed
them up again.

I have looked trhought the import specs and cant see anywhere in there to
set the indexing up so does anyone have any other suggestions please?

Kind regards,
Maver1ck666
 
G

Guest

Why use new tables every time? Rather than import to a new table, just
delete the data from the existing table that already has the indexes, and
import into the existing table.
To delete the existing data
CurrentDb.Execute("DELETE * Form MyTable;"), dbFailOnError
 

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

Top