A tool to model transformations in data warehouses. More information: https://github.com/dbt-labs/dbt-core.
dbt debug
dbt run
example_model:dbt test --select example_model
example_model and its downstream dependents:dbt build --select example_model+
not_now:dbt build --exclude "tag:not_now"
one and two:dbt build --select "tag:one,tag:two"
one or two:dbt build --select "tag:one tag:two"