Trailblaze Prep
All CertificationsCertification PathBecome a CTASearchContact Us

Choose your role

Associate
Administrator
Developer
Consultant
Marketing
Architect
Accredited Professional
Salesforce Certified Advanced Field Service Accredited ProfessionalSalesforce Certified B2B Commerce Admin Accredited ProfessionalSalesforce Certified B2B Commerce Developer Accredited ProfessionalSalesforce Certified Communications Cloud Accredited ProfessionalSalesforce Certified Consumer Goods Cloud Accredited ProfessionalSalesforce Certified Consumer Goods Cloud Trade Promotion Management Accredited ProfessionalSalesforce Certified Contact Center Accredited ProfessionalSalesforce Certified CPQ and Billing Consultant Accredited ProfessionalSalesforce Certified Energy and Utilities Cloud Accredited ProfessionalSalesforce Certified Financial Services Cloud Accredited ProfessionalSalesforce Certified Health Cloud Accredited ProfessionalSalesforce Certified Heroku Developer Accredited ProfessionalSalesforce Certified Loyalty Management Accredited ProfessionalSalesforce Certified Manufacturing Cloud Accredited ProfessionalSalesforce Certified Marketing Cloud Advanced Cross Channel Accredited ProfessionalSalesforce Certified Marketing Cloud Intelligence Accredited ProfessionalSalesforce Certified Marketing Cloud Personalization Accredited ProfessionalSalesforce Certified Media Cloud Accredited ProfessionalSalesforce Certified Net Zero Cloud Accredited ProfessionalSalesforce Certified Order Management Administrator Accredited ProfessionalSalesforce Certified Order Management Developer Accredited ProfessionalSalesforce Certified Process Automation Accredited ProfessionalSalesforce Certified Public Sector Solutions Accredited Professional
Sales
Designer
Tableau
Associate
Administrator
Developer
Consultant
Marketing
Architect
Accredited Professional
Salesforce Certified Advanced Field Service Accredited ProfessionalSalesforce Certified B2B Commerce Admin Accredited ProfessionalSalesforce Certified B2B Commerce Developer Accredited ProfessionalSalesforce Certified Communications Cloud Accredited ProfessionalSalesforce Certified Consumer Goods Cloud Accredited ProfessionalSalesforce Certified Consumer Goods Cloud Trade Promotion Management Accredited ProfessionalSalesforce Certified Contact Center Accredited ProfessionalSalesforce Certified CPQ and Billing Consultant Accredited ProfessionalSalesforce Certified Energy and Utilities Cloud Accredited ProfessionalSalesforce Certified Financial Services Cloud Accredited ProfessionalSalesforce Certified Health Cloud Accredited ProfessionalSalesforce Certified Heroku Developer Accredited ProfessionalSalesforce Certified Loyalty Management Accredited ProfessionalSalesforce Certified Manufacturing Cloud Accredited ProfessionalSalesforce Certified Marketing Cloud Advanced Cross Channel Accredited ProfessionalSalesforce Certified Marketing Cloud Intelligence Accredited ProfessionalSalesforce Certified Marketing Cloud Personalization Accredited ProfessionalSalesforce Certified Media Cloud Accredited ProfessionalSalesforce Certified Net Zero Cloud Accredited ProfessionalSalesforce Certified Order Management Administrator Accredited ProfessionalSalesforce Certified Order Management Developer Accredited ProfessionalSalesforce Certified Process Automation Accredited ProfessionalSalesforce Certified Public Sector Solutions Accredited Professional
Sales
Designer
Tableau
Study Guide

Salesforce Data Architect Study Guide (Winter '26)

Your complete guide to passing the Salesforce Data Architect exam — data modelling, MDM patterns, large data volume strategy, Shield, and ETL design.

KM

Written and reviewed by Krishna Mohan — ADM-201, PD1, PD2, App Builder & Consultant certified. Updated for Winter '26. Methodology · Contact

60
Questions
110 min
Time Limit
~68%
Passing Score
$400
Exam Fee

Exam Sections & Weightings

Data Modelling & Management30%
Master Data Management25%
Large Data Volume Strategy20%
Data Governance & Compliance15%
Data Migration & ETL10%

What Each Section Tests

30%

Data Modelling & Management

Designing scalable data models: object relationships (lookup, master-detail, many-to-many), field types, record types, and custom metadata. Evaluating when to use custom objects vs platform features. External objects and Salesforce Connect for federated data. Schema design for reporting performance.

25%

Master Data Management

MDM patterns: consolidation, coexistence, and centralisation. Matching and merging duplicate records — Duplicate Management, matching rules, merge fields. Salesforce as system of record vs system of engagement. Golden record strategy and data stewardship workflows.

20%

Large Data Volume Strategy

LDV best practices: skinny tables, custom indexes, division-based partitioning. Data skew: ownership skew, lookup skew, and their impact on record locking. Archiving strategies: big objects, external archiving via Heroku or third-party. Bulk API 2.0 for high-volume loads. SOQL optimisation for large datasets.

15%

Data Governance & Compliance

Data governance frameworks, data stewardship roles, metadata management. Salesforce Shield: Platform Encryption (deterministic vs probabilistic), Event Monitoring, Field Audit Trail. GDPR and data residency considerations: field-level encryption, data masking, data retention policies.

10%

Data Migration & ETL

ETL tool selection: Salesforce Data Loader, Informatica, Jitterbit, MuleSoft. Migration strategy: data profiling, cleansing, transformation, and validation. Bulk API vs REST API for migration volume. Rollback strategy and data validation post-migration. External IDs for upsert and relationship mapping.

10-Week Study Plan

Week 1Data model foundations — revisit object relationships (lookup, master-detail, junction), field types, record types, and custom metadata types vs custom settings.
Week 2Schema design — design a data model for a complex scenario (e.g., multi-product company with accounts, contacts, opportunities, assets). Review Salesforce sharing implications of your model.
Week 3Master Data Management — study MDM patterns (consolidation, coexistence, centralisation). Configure Duplicate Management: matching rules, duplicate rules, and merge.
Week 4Large Data Volume fundamentals — skinny tables, custom indexes, selective SOQL queries. Run EXPLAIN PLAN on slow queries in your dev org.
Week 5Data skew — ownership skew and lookup skew. Practice identifying skew in data model diagrams and selecting the correct mitigation.
Week 6Archiving strategies — big objects (create one in your dev org), external archiving patterns, Salesforce Connect and external objects for federated data.
Week 7Salesforce Shield — Platform Encryption (deterministic vs probabilistic), Event Monitoring log types, Field Audit Trail. Understand GDPR and compliance use cases.
Week 8Data migration — ETL tool comparison, External IDs for upsert, Bulk API 2.0 job lifecycle, data validation and rollback strategy.
Week 9Governance — data stewardship, metadata management, data quality KPIs, master data ownership. Salesforce Health Check and Security Scoring.
Week 10Full mock exams. Heavily focus on LDV and MDM scenarios — these are the most commonly missed. Aim for 75%+ before booking.

Scenario Strategy Tips

  • 1.LDV mitigation hierarchy: When performance is the problem, first check if a custom index can help. If not, consider skinny tables. If the model itself causes skew, redesign the relationship or use big objects for archiving.
  • 2.MDM pattern selection: Consolidation = merge all data into Salesforce as master. Coexistence = Salesforce is one of several authoritative systems. Centralisation = Salesforce is the single hub but doesn't own all data. Match the pattern to the business scenario described.
  • 3.Encryption trade-offs: Deterministic encryption allows filtering/searching. Probabilistic encryption is more secure but you cannot filter/search on the field. GDPR questions often require deterministic encryption so data can be found and deleted.
  • 4.External IDs for migration: Always create External ID fields on objects before a data migration. They enable upsert (insert + update in one operation) and allow relationship mapping across systems without knowing Salesforce record IDs.

Mock Exam Benchmark

Aim for 75%+ on practice exams before scheduling. Data Architect questions are scenario-heavy — most describe a business situation with performance, compliance, or data quality challenges and ask for the optimal design. If you can justify your answer (not just identify it), you are ready.

Top 10 Concepts to Review

  1. Object relationship types and when to use lookup vs master-detail
  2. Three MDM patterns: consolidation, coexistence, centralisation — and when to use each
  3. Duplicate Management: matching rules, duplicate rules, merge workflow
  4. LDV: custom indexes, skinny tables, selective SOQL, EXPLAIN PLAN
  5. Ownership skew and lookup skew: causes, symptoms, and mitigation
  6. Big objects: use cases, limitations, Async SOQL for queries
  7. Salesforce Shield: Platform Encryption, Event Monitoring, Field Audit Trail
  8. Deterministic vs probabilistic encryption and searchability implications
  9. Bulk API 2.0: job types, serial vs parallel, ingest lifecycle
  10. External IDs: creating them, using upsert, relationship mapping in migration

Frequently Asked Questions

What is the Salesforce Data Architect certification?
The Salesforce Data Architect certification validates expertise in designing scalable data models, managing large data volumes, implementing MDM strategies, and enforcing data governance on the Salesforce platform. The exam has 60 questions, a 110-minute time limit, ~68% passing score, and a $400 fee. It is part of the Application Architect credential path.
What is large data volume (LDV) and why is it important?
Large data volume refers to Salesforce orgs with millions of records that can cause query performance issues, record locking contention, and report timeouts. LDV best practices include creating custom indexes on frequently queried fields, using skinny tables (custom Salesforce indexes that pre-join columns), avoiding cross-object formula fields on large objects, and using ownership/lookup skew-aware design. The Data Architect exam heavily tests LDV trade-offs.
What is data skew in Salesforce?
Data skew occurs when a disproportionate number of records share a common field value, causing performance problems. Ownership skew: many records owned by one user (e.g., integration user) — causes slow sharing rule calculations. Lookup skew: many child records on one parent record (e.g., 50,000 Contacts on one Account) — causes record locking during DML. The exam tests both types and the mitigation strategies.
What is Salesforce Shield and when is it required?
Salesforce Shield is a set of security tools for regulated industries: Platform Encryption (encrypt data at rest, field-level), Event Monitoring (audit user actions via log files), and Field Audit Trail (retain field history for up to 10 years). Shield is required when compliance mandates (HIPAA, GDPR, PCI-DSS) require encryption of specific sensitive fields or long-term audit logs beyond standard field history retention (18 months).
How long should I study for the Data Architect exam?
Plan for 10–12 weeks with 10–15 hours per week. Hands-on experience with SOQL query optimisation, Bulk API loading, and data model design is essential. Candidates without LDV experience should spend extra time on that section (20% of exam) as it tests trade-offs that are hard to understand without project experience.

What Comes After This Certification?

After this certification, consider: Application Architect, System Architect, or Technical Architect (CTA).

Exam Section Difficulty Heatmap

Which sections are a gimme vs which ones trap confident candidates. Use this to prioritise your final-week revision.

Exam SectionDifficultyStudy Tip
Data ModelingHardNormalization, LDV, and data model trade-offs — scenario questions on design.
Master Data ManagementModerateMDM concepts and when to use Data Cloud vs CRM — know the positioning.
Data GovernanceTrap ⚠Data quality and stewardship — governance vs security is often confused.
Data ArchitectureHardArchitecture decisions and documentation — integration with other domains.
Data IntegrationModerateETL and replication patterns — know the tools and limits.

Difficulty based on analysis of common candidate errors across each exam section.

Ready to Practice?

Test yourself with free Data Architect practice questions covering all 5 exam sections.

Start Free Practice Questions