The problem I’m having
I need to run some list of specific models, in the middle of the dependency tree across multiple folders.
The context of why I’m trying to do this
I’m fixing bugs in the center of a transformation pipeline.
What I’ve already tried
Right now I run the models one at a time, which is effective, but not as convenient.
Hi Ben!
You can use the set operators to solve this: A space represents a union, and a comma an intersection.
So in your case you can execute: dbt run -s model_a model_b model_c
1 Like
Oh, that’s lovely! That wasn’t clear to me from reading the documentation. Maybe that would be a good thing to have a couple of examples for. Or, maybe there are examples, and I was on the wrong page. Either way, thanks so much for helping me out!
1 Like