Models and Transformations

Models are the core building blocks of your dbt project. They define the transformations that turn raw data into analytics-ready datasets using SQL. This guide covers how to create models, manage dependencies, and leverage dbt's templating capabilities.


What Are Models?

In dbt, a model is a SQL file that defines a transformation. When you run dbt, it compiles these SQL files into executable queries and runs them against your data warehouse, creating views or tables.

Models serve three key purposes:

  1. Transform data into useful analytics structures

  2. Document transformations with clear SQL

  3. Create dependencies between different data assets

Each model typically results in a single table or view in your data warehouse.


Creating Your First Model

A model is simply a .sql file in your models/ directory. Let's start with a basic example:

-- models/staging/stg_customers.sql
SELECT
  id as customer_id,
  first_name,
  last_name,
  email,
  date_joined
FROM {{ source('jaffle_shop', 'customers') }}

When you run dbt run, this SQL gets compiled and executed in your data warehouse, creating a view called stg_customers with transformed customer data.


Using Common Table Expressions (CTEs)

CTEs make your models more readable and maintainable by breaking complex queries into logical building blocks. They're a powerful way to structure your transformations:

CTEs offer several benefits:

  • Improve readability by breaking complex logic into named sections

  • Allow you to reuse intermediate calculations

  • Make troubleshooting easier by separating transformation steps


Model Dependencies with ref()

The ref() function is one of dbt's most powerful features. It allows you to reference other models, automatically creating dependencies:

When you use ref():

  1. dbt automatically determines the correct schema and table name

  2. dbt builds a dependency graph, ensuring models run in the correct order

  3. dbt creates lineage documentation for your project

A key benefit is that if you rename models or change schemas, dbt handles all the references for you.


Model Configuration with config()

The config() function lets you control how a model is materialized and other settings:

Common configuration options include:

  • materialized: How the model should be created ('view', 'table', 'incremental', 'ephemeral')

  • schema: Which schema the model should be created in

  • tags: Labels to organize and select models

  • Database-specific options (like sort, dist, cluster_by, etc.)


Using Jinja for Dynamic SQL

Jinja is a templating language that allows you to generate dynamic SQL. dbt uses Jinja to make your transformations more flexible and reusable.

Conditional Logic

Use if/else statements to adapt your SQL based on conditions:

Looping

Generate repetitive SQL using for loops:

Variables

Use variables to make your models configurable:


Model Organization Best Practices

Organize your models to reflect their purpose in your analytics pipeline:

Staging Models

Staging models clean and standardize source data:

  • Naming and datatype standardization

  • Simple filtering

  • One-to-one relationship with source tables

  • Typically materialized as views

Intermediate Models

Intermediate models combine and transform staging models:

  • Join related data sources

  • Apply business logic

  • Create reusable building blocks

  • Typically materialized as views

Mart Models

Mart models prepare data for business consumption:

  • Oriented around business entities (customers, products, etc.)

  • Optimized for specific use cases

  • Include calculated metrics

  • Often materialized as tables for performance


Troubleshooting Models

When your models have issues, use these strategies to troubleshoot:

Compiling Without Running

Use dbt compile to see the generated SQL without running it:

Then check the compiled SQL in target/compiled/[project_name]/models/...

Execute Specific Models

Run only the model you're working on:

Or run a model and everything that depends on it:

Check Logs

Detailed logs are available in the logs/ directory and often contain helpful error information.


Advanced Model Techniques

Custom Schemas

Generate custom schemas to separate models by team or environment:

Post-Hooks

Execute SQL after a model is created, such as granting permissions:

Documentation in Models

Add descriptions to your models using YAML files:

These descriptions will appear in your automatically generated documentation.

By mastering models and transformations in dbt, you can build a reliable, maintainable analytics pipeline that transforms raw data into valuable business insights.

Last updated

Was this helpful?