Question 46
DP-750 voucher + Udemy course (lifetime access) = ₹3,500 for Indian ID card holders.
Details →You are designing several one-time and recurring load operations into Unity Catalog. For each requirement, you must select the single most appropriate command from a dropdown. The available options for every row are: **COPY INTO**, **CREATE TABLE AS SELECT (CTAS)**, and **CREATE OR REPLACE TABLE (CRAS)**. ```mermaid flowchart TD subgraph HOTSPOT["Select the command for each requirement"] R1["Row 1: Incrementally and idempotently load thousands of new<br/>JSON files that arrive over time into an existing Delta table;<br/>already-loaded files must be skipped on re-runs"] -->|dropdown| D1["[ COPY INTO | CTAS | CRAS ]"] R2["Row 2: Create a brand-new managed Delta table in one statement<br/>by querying an existing Hive metastore table (full migration,<br/>no incremental reload needed)"] -->|dropdown| D2["[ COPY INTO | CTAS | CRAS ]"] R3["Row 3: Fully overwrite an existing reporting table's schema<br/>and data each night from a SELECT, atomically replacing it<br/>while keeping the same table name and history"] -->|dropdown| D3["[ COPY INTO | CTAS | CRAS ]"] end ```