1. dbt Labs Official Documentation
"About materializations": "Views don't store data
but rather run the query behind them each time they are referenced." This section explicitly states that data is not stored for views.
Source: dbt Labs Documentation
Core > docs > dbt-versions > v1.8 (latest) > "About materializations".
Link: https://docs.getdbt.com/docs/build/materializations#view
2. dbt Labs Official Documentation
"table materialization": "When using the table materialization
your model is rebuilt as a table on each run
via a create table as statement... Tables are useful for models that are computationally expensive to build
as they can be referenced by downstream models without being re-calculated." This provides the direct contrast to the view materialization
clarifying which type stores data.
Source: dbt Labs Documentation
Core > docs > dbt-versions > v1.8 (latest) > "About materializations".
Link: https://docs.getdbt.com/docs/build/materializations#table