Prep · Module 04

8-Week Study Plan

Week-by-week from today to interview-ready - check items off; progress is saved in your browser.

This plan turns the whole hub into a schedule: 47 checkable items across 8 weeks, sequenced so the DE Associate exam lands in week 5 and interview rehearsal peaks in week 7, right when applications submitted in week 5 start producing screens (Databricks loops average roughly 35–38 days end to end). If you start the week of June 9, the exam target is the week of July 6. Checkbox state lives in this browser's localStorage, so use one machine or accept a reset.

WeekThemeCore modulesMilestone
1DE foundationsSpark, DeltaLab workspace live; exam booked
2Ingestion & pipelinesStreaming, LakeflowAuto Loader lab done; resume finalized
3Governance & modelingUnity Catalog, ModelingUC + SCD2 labs; LinkedIn drafted
4Performance, SQL, DevOpsPerformance, SQL, DevOpsBundle deployed; practice exam 1
5Certification weekCertifications, RSA RoleExam sat; applications opened
6RSA depthMigrations, Architectures, GenAIPanel deck built; site published
7RehearsalConsulting, Prep track4 mocks done; stories rehearsed
8Buffer & launchWeak areas onlyApplications in; Professional plan set

Week 1 — DE foundations

Theme: rebuild Spark and Delta mental models from first principles, stand up a lab, and put a real deadline on the calendar.

Book the exam before you feel ready. The date is the plan: everything in weeks 2–4 exists to converge on it, and a paid, calendared slot beats a vague intention every time. If week 4's practice exam goes badly, Webassessor lets you reschedule - but you almost certainly will not need to.

Week 2 — Ingestion & pipelines

Theme: close your biggest tooling gap. The exam's heaviest domain is ingestion, and Auto Loader and declarative pipelines are exactly the tools you have not run in production.

"Have you run Auto Loader or Lakeflow Declarative Pipelines in production?"

Do not bluff this - interviewers at Databricks and its partners can smell invented production stories. Strong outline: (1) be precise - "My production orchestration at ADM is Databricks Workflows plus ADF, coordinated through Redwood RunMyJobs; ingestion there is metadata-driven ADF and PySpark." (2) Pivot to lab depth - "I've built Auto Loader and declarative pipelines hands-on while preparing for the Associate cert, including expectations and file-arrival triggers, so I know the API and the failure modes." (3) Close with transferable production depth: medallion design, Unity Catalog governance, Delta tuning, and FinOps are things you do run at enterprise scale. Honesty plus adjacent depth reads far better than a vague yes.

Week 3 — Governance & modeling

Theme: Governance & Security is 15% of the exam and the core of every enterprise conversation; modeling is where your SCD and CDC experience becomes exam points.

Week 3's governance lab is a replay, not new material. The three ADM HR agents - the Genie Space headcount-and-salaries agent, the Employee Policy RAG assistant, and the multi-agent router - all run behind Unity Catalog row- and column-level permissions, so HR users only see the data slices they are entitled to. You shipped that pattern in production; the lab's job is to prove you can rebuild it from a blank workspace, with the GRANTs, row filter, and column mask coming from recall rather than an existing setup. "I run this in production and I can rebuild it cold" is a far stronger interview sentence than either half alone.

Week 4 — Performance, SQL, DevOps

Theme: the remaining exam domains plus your first full dress rehearsal - by Sunday you know exactly where you stand.

Week 5 — Certification week

Theme: pass the exam mid-week, then immediately convert the credential into applications while it is freshest.

Week 6 — RSA depth

Theme: build the customer-facing story - migrations, reference architectures, and the GenAI work that is your strongest differentiator.

You already own the migration stories week 6 needs - they just lack RSA framing. At Maersk you brought SAP S/4HANA and ACDOCA Universal Journal data into an Azure lakehouse and migrated SSAS multidimensional cubes to Azure Analysis Services Tabular; at the Port Authority you replaced legacy VBA and MS Access ridership workloads with parameterized Synapse pipelines. Neither was branded "warehouse-to-lakehouse," but both follow the phased shape the Migrations module teaches: assess, run in parallel, cut over, decommission. This week's work is translating those projects into customer-facing language - discovery, phasing, risk - not learning migration from zero.

"How do you stay current with the Databricks platform?"

This site is the answer. Outline: (1) concrete artifact - "I maintain a public Databricks knowledge base I built while preparing for certification; here is the link." (2) Evidence of tracking real change - "When the Associate blueprint changed on May 4, 2026, I re-mapped my plan to the new 7 domains and learned the renames: DLT to Lakeflow Spark Declarative Pipelines, Asset Bundles to Automation Bundles, Repos to Git Folders." (3) Practice, not just reading - "Everything I could not use at work - Auto Loader, declarative pipelines, bundles - I built in a Free Edition lab." Interviewers hear "I read the blog" constantly; a published, dated, hands-on knowledge base is a different class of answer.

Week 7 — Rehearsal

Theme: stop ingesting, start performing - every output this week is spoken, timed, and witnessed.

Week 8 — Buffer & launch

Theme: absorb slippage, close gaps, and ship the applications - this week exists so the plan survives contact with real life.

The whole plan leans on week 2's resume finalization actually happening. Applications open in week 5; if the resume still lacks your university and major, still carries unverified dollar figures (the $10M Maersk number is flagged "verify before external use"), or lists the certification ambiguously, every referral and recruiter screen downstream inherits that weakness. Two specific traps: never let the cert read as earned before you pass - "scheduled July 2026" until then, exact date after - and never quote the $10M externally until you have re-verified how it was measured. If week 2 slips, fix the resume before anything else in week 3; it outranks the labs.

Daily cadence

Weekdays: 45–60 minutes, split 30 minutes of module study and 15 minutes of timed drill (SQL, PySpark idioms, or flashcards from the modules). Weekends: one or two 90–120 minute blocks for labs and, from week 6 on, mocks. Consistency beats cramming - on a day that collapses, do only the 15-minute drill and keep the streak alive rather than skipping entirely.

A good drill is one pattern, recalled cold, under a timer. Example - the dedup-to-latest idiom that shows up in both the exam and live SQL screens:

-- 15-minute drill: latest record per key, then SCD-friendly output
SELECT *
FROM (
  SELECT *,
         ROW_NUMBER() OVER (
           PARTITION BY employee_id
           ORDER BY updated_at DESC
         ) AS rn
  FROM bronze.hr_updates
)
WHERE rn = 1;

Rotate the drill bank weekly: windows and dedup (weeks 1–2), MERGE and SCD2 (week 3), join strategies and skew reasoning (week 4), then mixed timed sets after that.

Application strategy

Run applications as a parallel track from week 5, not an afterthought in week 8:

Mind the calendar math: Databricks loops run 4–7 weeks. Applying in week 5 means screens land around weeks 6–7 - exactly when this plan schedules rehearsal - and onsites land in weeks 8–10, after the buffer week. That alignment is deliberate; if you delay applications to week 8, your onsites drift a month past your sharpest preparation.