Bird
0
0

Which incremental strategy in dbt only adds new rows without modifying existing ones?

easy📝 Conceptual Q11 of 15
dbt - Incremental Models
Which incremental strategy in dbt only adds new rows without modifying existing ones?
Adelete+insert
Bmerge
Cappend
Dtruncate
Step-by-Step Solution
Solution:
  1. Step 1: Understand the append strategy

    The append strategy adds only new rows to the existing table without changing any existing data.
  2. Step 2: Compare with other strategies

    Merge updates existing rows and adds new ones; delete+insert replaces matching rows; truncate removes all data first.
  3. Final Answer:

    append -> Option C
  4. Quick Check:

    append = add new rows only [OK]
Quick Trick: Append means add new rows only, no updates [OK]
Common Mistakes:
MISTAKES
  • Confusing merge with append
  • Thinking delete+insert only adds rows
  • Assuming truncate is an incremental strategy

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More dbt Quizzes