D8A Academy © Portfolio Platform
Build · Validate · Get Hired
Free introLeaderboardBlogCheatsheetsCommunity
Sign inGet started
← All cheatsheets
Data Engineer·#003·July 24, 2026·2 min read

ETL vs ELT: which one and why

Where the Transform step runs decides your tooling, your costs, and who gets to shape the data. The full comparison, plus a free PDF.

Get the free PDF

One page, print-ready, free to share. No signup needed.

Download the PDF

ETL and ELT do the same three things: Extract data from sources, Transform it into something usable, Load it into a destination. The entire debate is about the order of the last two letters, because that order decides where the work happens, what tools you need, and who can do the transforming.

Two orders of operations

ETL: Extract → Transform → Load. Data is cleaned and shaped by a pipeline (Spark, Informatica, custom code) before it lands in the warehouse. The warehouse only ever sees finished tables.

ELT: Extract → Load → Transform. Raw data lands in the warehouse first, then gets transformed inside it, with SQL, typically orchestrated by dbt. The warehouse IS the transform engine.

When each one wins

ETL wins when:

  • Compliance says clean before landing (PII stripping, GDPR)
  • Warehouse compute is scarce or pricey
  • The target is legacy or on-prem
  • Schemas are stable and well known

ELT wins when:

  • You run a cloud warehouse where compute is cheap and elastic
  • Schemas evolve and you want to reprocess anytime
  • Analysts own transforms in SQL and dbt
  • Raw history has audit or debugging value

Side by side

ETLELT
transform runsbefore loadin the warehouse
typical toolsSpark, Informaticadbt + warehouse SQL
raw data keptnoyes
who transformsdata engineersengineers + analysts
flexibilitylowerhigher

Most modern cloud stacks land on ELT, with dbt as the T.

The trap: ELT is not "no modeling"

Loading raw data with no modeling layer builds a swamp, not a platform. ELT moves the T later, it does not delete it. The standard layer convention:

  • raw: land data as-is, immutable, boring on purpose
  • staging: rename, cast, clean. One model per source table.
  • marts: business logic, joined and ready for BI

This is exactly the dbt layer convention, and it is what separates an ELT warehouse from a data swamp.

Frequently asked questions

Is ELT replacing ETL?
In cloud analytics stacks, mostly yes: cheap warehouse compute made transforming after loading the default. But ETL still wins where compliance requires cleaning before landing, where the target is legacy or on-prem, or where warehouse compute is expensive or limited.
Where does dbt fit in ETL vs ELT?
dbt is the T of ELT. Data is extracted and loaded raw into the warehouse, then dbt runs SQL models inside the warehouse to transform it in layers: staging, intermediate, marts.
Which should a small team choose?
Usually ELT with a cloud warehouse and dbt. It needs less infrastructure than an ETL pipeline, analysts can contribute transforms in SQL, and keeping raw history means you can fix modeling mistakes by reprocessing.
Is ELT cheaper than ETL?
Not automatically. ELT shifts cost from pipeline infrastructure to warehouse compute. It is usually cheaper to operate for small and mid-size teams, but an unmodeled ELT warehouse running wasteful queries can absolutely out-spend a tight ETL setup.

Get the free PDF

One page, print-ready, free to share. No signup needed.

Download the PDF

More cheatsheets