L
Lance
Hello,
I am having an issue with creating an import table as an intermediary
to processing the data and inserting it into my main table. A bit of
brief info on the data imported, and where it is going.
I have all of my information coming in from CardScan, an online contact
management database.
The fields include First Name, Last Name, Organization Name, address
information, creation time, and modified time.
I am importing into a table, which I have so aptly called
tblCardScanImport.
I am then exporting this information in two ways. First, I pull every
organization name from the list, and add them to a table called tblOrg.
This assigns them an autoID internally. Following that, I then go back
to the tblCardScanImport, and add each individual (i have dictate this
by the presence of first name and last name fields not null) to a table
called tblClient. The reason I must create the Org first is because
each client has the option of referencing to their employer. Since my
links are autonumber associations, i obviously need to create the
organization before the client.
I am now running into one main problem.
1) I have multiple contacts with the same Organization in Cardscan.
Cardscan however, has no 'key' for organizations, since that's not its
focus. I was going to use the contact "creationdate" as a 'key', but
since i have multiple "creationdate" fields for each org, that is not
going to work. What should I do to create a key for the organization?
When I mean key, I am not talking about an internal key, autonumber
does that. I mean a way to track the organization as related to
cardscan, and have it update if someone updates the organization
information w/in cardscan (such as a phone number change).
Thanks
I am having an issue with creating an import table as an intermediary
to processing the data and inserting it into my main table. A bit of
brief info on the data imported, and where it is going.
I have all of my information coming in from CardScan, an online contact
management database.
The fields include First Name, Last Name, Organization Name, address
information, creation time, and modified time.
I am importing into a table, which I have so aptly called
tblCardScanImport.
I am then exporting this information in two ways. First, I pull every
organization name from the list, and add them to a table called tblOrg.
This assigns them an autoID internally. Following that, I then go back
to the tblCardScanImport, and add each individual (i have dictate this
by the presence of first name and last name fields not null) to a table
called tblClient. The reason I must create the Org first is because
each client has the option of referencing to their employer. Since my
links are autonumber associations, i obviously need to create the
organization before the client.
I am now running into one main problem.
1) I have multiple contacts with the same Organization in Cardscan.
Cardscan however, has no 'key' for organizations, since that's not its
focus. I was going to use the contact "creationdate" as a 'key', but
since i have multiple "creationdate" fields for each org, that is not
going to work. What should I do to create a key for the organization?
When I mean key, I am not talking about an internal key, autonumber
does that. I mean a way to track the organization as related to
cardscan, and have it update if someone updates the organization
information w/in cardscan (such as a phone number change).
Thanks