normalization--importing flat files from Excel...

G

Guest

If I have a normalized db which needs to be updated with flat files from
Excel, what's the best way to update?

The Excel flat files are obviously not normalized, so it's not a simple
matter of doing a paste append or import to an existing table.

I understand the concepts of data normalization; I'm having trouble
understanding how to get the data in excel into the normalized db structure.
 
G

Guest

Lynn I think you answered my question with the suggestion to use the append
and update queries.

Don't know why I didn't think of that. It sounds like you're saying import
the excel worksheet into a separate table, call it tblFlatFile, and then run
queries on it in order to maintain the normalized db structure.

Simple.

Thanks.
 
G

Guest

Don't know why I didn't think of that. It sounds like you're saying import
the excel worksheet into a separate table, call it tblFlatFile, and then run
queries on it in order to maintain the normalized db structure.

It is just semantics, but I would word it slightly differently. I would say
to run queries on it in order to create the normalized db structure. You
will not be using tblFlatFile for anything other than creating your
normalized tables.
 

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