Which of the following is true about restricting the usage of models in dbt?
Choose 1 option.
32. You are creating a fct_tasks model with this CTE:
with tasks as (
select * from {{ ref('stg_tasks') }}
)
You receive this compilation error in dbt:
Compilation Error in model fct_tasks (models/marts/fct_tasks.sql)
Model 'model.dbt_project.fct_tasks' (models/marts/fct_tasks.sql) depends on a node named 'stg_tasks' which was not found
Which is correct? Choose 1 option.
Options:
16. Your tests folder looks like:
tests
└── generic
└── furniture_customers_test.sql
macro_stg_tpch_orders_assert_pos_price.sql
macro_stg_tpch_suppliers_assert_pos_acct_bal.sql
stg_tpch_orders_assert_positive_price.sql
You run the command:
dbt test --select 'test_type:singular'
What will the command run?
Options from screenshot:
Which two code snippets result in a lineage line being shown in the DAG? Choose 2 options.
Which is true about writing generic tests?
Choose 1 option.
Which two mechanisms allow dbt to write DRY code by reusing logic, preventing writing the same code multiple times?
Choose 2 options.
You want to restrict which models can refer to a specific model.
How can this be done?
Choose 1 option.



