Verified By IT Certified Experts
CertsTopics.com Certified Safe Files
Up-To-Date Exam Study Material
99.5% High Success Pass Rate
100% Accurate Answers
Instant Downloads
Exam Questions And Answers PDF
Try Demo Before You Buy
13. An analyst on your team has informed you that the business logic creating the is_active column of your stg_users model is incorrect.
You update the column logic to:
case
when state = 'Active'
then true
else false
end as is_active
Which test can you add on the state column to support your expectations of the source data? Choose 1 option.
Consider these SQL and YAML files for the model model_a:
models/staging/model_a.sql
{{ config(
materialized = "view"
) }}
with customers as (
...
)
dbt_project.yml
models:
my_new_project:
+materialized: table
staging:
+materialized: ephemeral
Which is true about model_a? Choose 1 option.
Options:
Ignoring indentation, arrange these YAML code snippets in the correct order to generate descriptions on the source, table, and column:
