Salesforce Certified Data Architect Practice Test 2

Question 1 / 40
To avoid creating duplicate Contacts, a customer frequently uses Data Loader to upsert Contact records into Salesforce. What common error should the data architect be aware of when using upsert?
Errors with duplicate external Id values within the same CSV file.
Errors with records being updated and inserted in the same CSV file.
Errors when a duplicate Contact name is found cause upsert to fail.
Errors with using the wrong external Id will cause the load to fail.
Comment (0)
Suggested answer: A
Explanation:
Data Loader uses external Id fields to match records in the CSV file with records in Salesforce during an upsert operation. If the CSV file contains duplicate external Id values within the same file, Data Loader will throw an error saying ''Duplicate Id Specified'' and will not process those records. Therefore, it is important to ensure that the CSV file does not have any duplicate external Id values before using Data Loader to upsert records.