Courseiva
Ingest and Transform DatamediumMultiple ChoiceObjective-mapped

DP-700 Ingest and Transform Data Practice Question

Exhibit

{
  "name": "CopyFromS3",
  "type": "Copy",
  "typeProperties": {
    "source": {
      "type": "AmazonS3Source"
    },
    "sink": {
      "type": "LakehouseTableSink",
      "tableAction": "Overwrite"
    }
  }
}

Refer to the exhibit. You are reviewing a JSON snippet from a Fabric Data Factory pipeline. What is the result of executing this activity if the target table already exists?

⚠ Common exam trap

Test-takers often assume table actions like 'Append' or 'Fail' are defaults for existing targets, overlooking explicit JSON property settings such as tableAction set to Overwrite.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

The existing data in the table will be replaced by the source data.

The JSON configuration specifies a Copy Activity that pulls data from an Amazon S3 source and writes it to a Lakehouse table. The tableAction property is set to Overwrite, which instructs the engine to drop the existing data in the target table and replace it with the new incoming dataset. This is a common pattern for full-load ingestion.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • The activity will append new rows to the existing table data.

    Why it's wrong here

    For the activity to append data to the existing table, the tableAction property would need to be set to Append. The current Overwrite setting ensures that the existing rows are removed before the new data is committed, preventing the accumulation of historical data within the target table.

  • The existing data in the table will be replaced by the source data.

    Why this is correct

    Setting the tableAction to Overwrite triggers a process where the existing data in the destination table is cleared before the new data from the S3 source is written. This ensures that the table reflects only the most recent ingestion cycle and prevents data duplication issues.

  • The pipeline will fail because the table already exists.

    Why it's wrong here

    The activity will not fail if the table exists; instead, it will perform the action defined by the Overwrite property. Failures usually occur if there are schema mismatches that the engine cannot resolve or if the service principal lacks the necessary permissions to drop and recreate table data.

  • A new table with a timestamp suffix will be created.

    Why it's wrong here

    While the activity will create the table if it does not already exist, the primary function of the Overwrite setting when a table is present is to replace the data. It does not create a new versioned table or a separate entity with a different name automatically.

Quick reference

AWS S3 Storage Class Comparison

Storage ClassMin DurationRetrievalUse Case
S3 StandardNoneImmediateFrequently accessed data
S3 Standard-IA30 daysImmediateInfrequent access, rapid retrieval
S3 One Zone-IA30 daysImmediateNon-critical infrequent data
S3 Intelligent-TieringNoneImmediate–hoursUnknown or changing access patterns
S3 Glacier Instant90 daysMillisecondsArchive with instant retrieval
S3 Glacier Flexible90 daysMinutes–hoursArchive, flexible retrieval
S3 Glacier Deep Archive180 daysHoursLong-term compliance archive

About these practice questions

One of 152 original DP-700 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written and reviewed by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

Last reviewed September 2026 · checked against the official Microsoft exam blueprint

This DP-700 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the DP-700 exam.