A consultant needs to import a large volume of records into a university's Salesforce production environment that has the Education Data Architecture (EDA). The import file already defines Account and Address information. The university's environment has a private sharing model and several sharing rules.
Which of these temporary actions should the consultant take before importing the data?
A. Disable sharing rules using TDTM.
B. Change the account model to Household.
C. Disable unnecessary code using Table-Driven Trigger Management (TDTM).
C. Disable unnecessary code using Table-Driven Trigger Management (TDTM).
Explanation:
Why TDTM is the Right Approach:
TDTM allows selective deactivation of triggers during data loads
Prevents:
Maintains data integrity while improving performance
Implementation Steps:
Identify triggers affecting imported objects
Temporarily disable via TDTM custom metadata
Run data import
Re-enable triggers
Why Other Options Are Wrong: A (Disable sharing rules): Would break security model, not performance-related
B (Change account model): Structural change that would require data restructuring
Best Practices for Large Imports:
Use Bulk API
Schedule during maintenance windows
Run in batches