You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The selection criterion ... does not match any nodes
You add a model my_model.sql, and then you do a dbt run or preview in dbt Cloud and things are working as expected. However, when you try using model selection (e.g. dbt run --select my_model), you get a warning in stdout:
00:20:09 The selection criterion 'my_model' does not match any nodes
00:20:09
00:20:09 [WARNING]: Nothing to do. Try checking your model configs and model specification args
Here are some things to check:
Check that your SQL model file name does not contain leading spaces:
✅
/models/my_model.sql
❌
/models/ my_model.sql
^ leading space
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Warning message
You add a model
my_model.sql
, and then you do adbt run
or preview in dbt Cloud and things are working as expected. However, when you try using model selection (e.g.dbt run --select my_model
), you get a warning in stdout:Here are some things to check:
Beta Was this translation helpful? Give feedback.
All reactions