You want to restrict which models can refer to a specific model.
How can this be done?
Choose 1 option.
Is this materialization supported by Python models in dbt?
Ephemeral
Examine model stg_customers_sales that exists in the main branch:
select
id as customer_id,
name as customer_name
from {{ source('my_data','my_source') }}
A developer creates a branch feature_a from main and modifies the model as:
select
id as customer_id,
name as customer_name,
country as customer_country
from {{ source('my_data','my_source') }}
A second developer also creates a branch feature_b from main and modifies the model as:
select
id as customer_id,
name as customer_name,
address as customer_address
from {{ source('my_data','my_source') }}
The first developer creates a PR and merges feature_a into main.
Then the second developer creates a PR and attempts to merge feature_b into main.
How will git combine the code from feature_b and the code from main, which now contains the changes from feature_a as well?
Statement:
"As feature_a is already approved and merged to main, the code for the model stg_customers_sales will stay as-is and the changes from feature_b won’t be added."
A developer imports a package from a private repository called timeformat for use within their project.
Which statement is correct? Choose 1 option.
Options:
Ignoring indentation, arrange these YAML code snippets in the correct order to generate descriptions on the source, table, and column:

Which is true about writing generic tests?
Choose 1 option.
Which two statements about Exposures are true?
Choose 2 options.
You are working with git to version control the dbt logic.
Order these steps to add or modify transformations to your dbt project.

You wrote this test against your fct_orders model to confirm status filters were properly applied by a parent model:
{{
config(
enabled=true,
severity='error'
)
}}
select *
from {{ ref('fct_orders') }}
where status_code = 13
Which statement about this test is true?
Which two are true for a dbt clone command?
Choose 2 options.