| Exam Name: | dbt Analytics Engineering Certification Exam | ||
| Exam Code: | dbt-Analytics-Engineering Dumps | ||
| Vendor: | dbt Labs | Certification: | Analytics Engineers |
| Questions: | 65 Q&A's | Shared By: | minha |
You run the command:
dbt test --select 'test_type:singular'
What will the command run?
Options shown:
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:
28. Consider this DAG:
model_a → model_c → model_e
model_b → model_d → model_f
(With model_c and model_d both feeding into the final layer.)
You execute:
dbt run --fail-fast
in production with 2 threads. During the run, model_b and model_c are running in parallel when model_b returns an error.
Assume there are no other errors in the model files, and model_c was still running when model_b failed.
Which model or models will successfully build as part of this dbt run? Choose 1 option.
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: