A Salesforce administrator is evaluating native data utilities to satisfy four specific administrative requirements for an enterprise organization:
1. Importing 65,000 custom object records using an External ID for upsert operations.
2. Importing 35,000 Lead records while applying existing duplicate rules to prevent creating duplicate records.
3. Executing an automated, nightly scheduled upsert of Opportunity records.
4. Performing a hard delete of 150,000 inactive custom object records to immediately bypass the Recycle Bin.
Which two utility configurations should the administrator implement to successfully fulfill these requirements? (Choose 2 options)
- Use Data Import Wizard to process the 35,000 Lead records because it natively supports Lead imports under 50,000 records and allows matching against lead deduplication criteria.Answer
- Use Data Loader via command-line interface (CLI) to execute both the automated nightly Opportunity upserts and the bulk hard deletion of custom object records.Answer
- CUse Data Import Wizard to perform the upsert of 65,000 custom object records because it handles custom objects faster via browser session controls.
- DUse Data Loader to import the Lead records because Data Import Wizard does not support standard objects like Leads or Campaign Members.
Answer
The administrator should use Data Import Wizard for the 35,000 Lead import to enforce duplicate prevention rules, and Data Loader (via CLI) for the 65,000 custom object upsert, the automated nightly Opportunity upsert, and the hard delete operation.
Data Import Wizard is optimal for importing under 50,000 Lead records with duplicate detection. Data Loader is required for automated CLI tasks, Opportunity operations, data loads exceeding 50,000 records, and hard deletion of records.
Step-by-Step Solution
Key Concept
Selecting between Data Import Wizard and Data Loader based on record volume limits, object support, duplicate prevention capabilities, and command-line automation.