Last Update 5 hours ago Total Questions : 65
The dbt Analytics Engineering Certification Exam content is now fully updated, with all current exam questions added 5 hours ago. Deciding to include dbt-Analytics-Engineering practice exam questions in your study plan goes far beyond basic test preparation.
You'll find that our dbt-Analytics-Engineering exam questions frequently feature detailed scenarios and practical problem-solving exercises that directly mirror industry challenges. Engaging with these dbt-Analytics-Engineering sample sets allows you to effectively manage your time and pace yourself, giving you the ability to finish any dbt Analytics Engineering Certification Exam practice test comfortably within the allotted time.
Which two are true for a dbt clone command?
Choose 2 options.

Ignoring indentation, arrange these YAML code snippets in the correct order to generate descriptions on the source, table, and column:


Given this dbt_project.yml:
name: " jaffle_shop "
version: " 1.0.0 "
config-version: 2
profile: " snowflake "
model-paths: [ " models " ]
macro-paths: [ " macros " ]
snapshot-paths: [ " snapshots " ]
target-path: " target "
clean-targets:
- " logs "
- " target "
- " dbt_modules "
- " dbt_packages "
models:
jaffle-shop:
+materialized: table
…and this warning when compiling your project:
[WARNING]: Configuration paths exist in your dbt_project.yml file which do not apply to any resources.
There are 1 unused configuration paths:
- models.jaffle-shop
What is the root cause?
A run hook in the jaffle_shop project was defined with an incorrect regular expression.
Your model has a contract on it.
When renaming a field, you get this error:
This model has an enforced contract that failed.
Please ensure the name, data_type, and number of columns in your contract match
the columns in your model ' s definition.
| column_name | definition_type | contract_type | mismatch_reason |
|-------------|------------------|----------------|-----------------------|
| ORDER_ID | TEXT | TEXT | missing in definition |
| ORDER_KEY | TEXT | | missing in contract |
Which two will fix the error? Choose 2 options.
A developer imports a package from a private repository called timeformat for use within their project.
Which statement is correct? Choose 1 option.
Options:

Which two statements about Exposures are true?
Choose 2 options.
Which command materializes my_model and only its first-degree parent model(s) in the data platform?
Choose 1 option.
