FEFreeExamDumps.in

Implementing Data Engineering Solutions Using Azure Databricks

Topic 1

Question 48

DP-750 voucher + Udemy course (lifetime access) = ₹3,500 for Indian ID card holders.

Details →

A bronze streaming table `customers_cdc_clean` contains change data capture records emitted by Debezium from a MySQL `customers` table. Each record has columns `id`, `operation` (`INSERT`, `UPDATE`, or `DELETE`), `operation_date`, and the customer attributes. You must materialize a `customers` streaming table in a Lakeflow Spark Declarative Pipeline that: - Upserts inserts and updates keyed on `id`. - Deletes a row from the target when `operation = "DELETE"`. - Resolves out-of-order events using `operation_date`. - Keeps only the current version of each record (no history). Which SQL flow definition correctly implements these requirements?