FEFreeExamDumps.in

Implementing Data Engineering Solutions Using Azure Databricks

Topic 1

Question 53

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

Details →

A data engineering team schedules the following SQL to run **every hour** on a Databricks SQL warehouse to load newly arrived JSON booking files from a Unity Catalog volume into an existing Delta table: ```sql COPY INTO main.sales.bookings_target FROM '/Volumes/main/sales/landing/bookings' FILEFORMAT = JSON FORMAT_OPTIONS ('mergeSchema' = 'true') COPY_OPTIONS ('mergeSchema' = 'true'); ``` **Proposed solution:** The team relies on `COPY INTO` alone — with no external bookkeeping table, no manual file-tracking, and no MERGE deduplication logic — to guarantee that re-running the scheduled statement does not reload files that were already ingested, so each source file's rows are inserted exactly once even across repeated runs. Does this solution meet the goal?

  • AYes
  • BNo