How can I import a denormalized CSV file into Access and maintain relational integrity?
for example:
csv(fname, lname, workphone, fax)
person(personid , fname, lname)
workerinfo(pers onid, workphone, fax)
I have tried using a simple INSERT INTO but this does not keep the foreign key in workerinfo.
I would like to do this within VBA so that I can make it a macro because I will be running it often
Thanks for your help!
for example:
csv(fname, lname, workphone, fax)
person(personid , fname, lname)
workerinfo(pers onid, workphone, fax)
I have tried using a simple INSERT INTO but this does not keep the foreign key in workerinfo.
I would like to do this within VBA so that I can make it a macro because I will be running it often
Thanks for your help!
Comment