how to import all lines from table even if identical

E

ebeth

I am working on a query that imports lines from tables that contain identical
data, how can I be sure they are not overwriting each other?
 
R

Rick Brandt

ebeth said:
I am working on a query that imports lines from tables that contain
identical data, how can I be sure they are not overwriting each other?

Unless you have primary keys or unique indexes in the target table that
prohibit it, the duplicates should be imported just fine.
 
Top