What materializations are available in dbt?
dbt ships with five materializations: view
, table
, incremental
, ephemeral
and materialized_view
.
Check out the documentation on materializations for more information on each of these options.
You can also create your own custom materializations, if required however this is an advanced feature of dbt.
0