Model Materializations
Covers dbt's model materialization strategies, including table, view, incremental, and ephemeral, and how to configure materializations at the project and individual model level.
Available Materialization Types
Type
Description
Best For
Configuring Materializations
1. Project Level (dbt_project.yml)
models:
your_project:
finance:
+materialized: table # All finance models as tables
staging:
+materialized: view # All staging models as views2. Model Level (in .sql files)
Choosing the Right Materialization
Factor
Consideration
Last updated
Was this helpful?