Course
dbt Analytics EngineerDeveloping dbt ModelsOrders pipeline investigation
0%
Orders projectPage 1 of 8

A change in order cleanup

You inherit an orders project. A teammate changes stg_orders and checks which downstream models dbt will include before running the build.

The intended flow is raw.orders to stg_orders to int_orders to fct_orders.

The team runs dbt ls --select stg_orders+ and expects all three project models.

See it in context
Terminal
$ dbt ls --select stg_orders+

analytics.stg_orders

Only stg_orders appears. int_orders and fct_orders are missing from the selection.

Restoring your place