Skip to main content

How do I run models downstream of one source?

To run models downstream of a source, use the source: selector:

$ dbt run --select source:jaffle_shop+

(You can also use the -s shorthand here instead of --select)

To run models downstream of one source tableIn simplest terms, a table is the direct storage of data in rows and columns. Think excel sheet with raw values in each of the cells.:

$ dbt run --select source:jaffle_shop.orders+

Check out the model selection syntax for more examples!

0