A company collects data from a web form on its site. The company wants to merge the data from the form and deduplicate the information against existing customer data:
Company Existing Profile Data:
* companyEmail: celeste.brown@bluewidgetcompany.com
* fName: Celeste
* IName: Brown-Smith
* officePhone: 555-555-7787
* mobilePhone: 555-555-1212
* companyName: Blue Widget Company
* companyPosition: Manager
Data From Web Form Submitted:
* companyEmail: celeste.brown@bluewidgetcompany.com
* fName: Celeste
* IName: Brown-Smith
* officePhone: 555-555-7700
* mobilePhone: 555-555-1212
* companyName: Blue Widget Company
* companyPosition: Director
Assume deduplication by the composite key companyEmail + IName + mobilePhone and the new web form data supersedes current data.
Which entry will the export file contain?
Currently there are no comments in this discussion, be the first to comment!