Which two code snippets result in a lineage line being shown in the DAG? Choose 2 options.
You want to run and test the models, tests, and snapshots you have added or modified in development.
Which will you invoke? Choose 1 option.
Options:

You want to restrict which models can refer to a specific model.
How can this be done?
Choose 1 option.
Which statement is true regarding source freshness checks?
Choose 1 option.
You run this command:
dbt build --select "source_status:fresher+" --state path/to/prod/artifacts
Which two need to happen before it can be executed successfully?
Choose 2 options.
You run the command:
dbt test --select 'test_type:singular'
What will the command run?
Options shown:
A developer has updated multiple models in their dbt project, materialized as tables and views.
They want to run and test all models upstream and downstream from the modified models that are materialized as views.
What command will achieve this? Choose 1 option.
You work at an e-commerce company and a vendor provides their inventory data via CSV file uploads to an S3 bucket.
How do you prep the data for dbt transformations?
Choose 1 option.
Consider this DAG for a dbt project. You have configured your environment to use one thread.
When running dbt run, you determine that model_d fails to materialize.

How will changing the command from dbt run to dbt run --fail-fast impact the execution of dbt run when model_d fails to materialize? Choose 1 option.
Options:
Which two configurations can be applied to a dbt test?
Choose 2 options.
Examine this query:
select *
from {{ ref('stg_orders') }}
where amount_usd < 0
You want to make this a generic test across multiple models.
Which set of two standard arguments should be used to replace {{ ref('stg_orders') }} and amount_usd? Choose 1 option.
You want to add new columns to an existing model with a new version.
What will trigger warnings for removal of older model versions?
Choose 1 option.
In development, you want to avoid having to re-run all upstream models when refactoring part of your project.
What could you do to save time rebuilding models without spending warehouse credits in your next command?
You are working with git to version control the dbt logic.
Order these steps to add or modify transformations to your dbt project.

Match the desired outcome to the dbt command or argument.

Which two are true about version controlling code with Git?
Choose 2 options.
Which two statements about Exposures are true?
Choose 2 options.
You define a new generic test on model customers in a YAML file:
version: 2
models:
- name: customers
columns:
- name: customer_id
tests:
- unique
- not_null
The next time your project compiles you get this error:
Raw Error:
mapping values are not allowed in this context
in "
What is the cause of this error?