Skip to content

Moving data into Fabric with a data pipeline

Fabric Data Factory pipelines let you orchestrate and automate data ingestion from a wide range of on-premises and cloud sources into Fabric using Copy Data activities and other pipeline activities. Pipelines are built from activities (Copy, Dataflow, Notebook, Stored Procedure, etc.) connected in a directed workflow with parameters, triggers, and control-flow logic like ForEach, If Condition, and Until. They provide a low-code, visual authoring experience similar to Azure Data Factory/Synapse pipelines, since Fabric pipelines share the same underlying engine.

1 · Learn the must-know

  • The Copy activity is the primary tool for ingesting data at scale into Fabric destinations such as Lakehouse tables/files, Warehouse tables, and KQL databases, and supports schema mapping, partitioning, and staging for performance.
  • Connections to sources use connectors and linked-service-like connection objects; on-premises or private-network sources require an On-premises Data Gateway or a Virtual Network (VNet) data gateway.
  • Pipelines can be triggered on a schedule, via tumbling window, event-based triggers (e.g., storage events), or on-demand/manual execution, and can be invoked from another pipeline using the Invoke Pipeline activity.
  • Parameters and variables allow pipelines to be reused across environments/sources, while pipeline expressions (dynamic content) let you reference activity outputs and system variables at runtime.
  • Copy Data assistant provides a wizard-driven experience to quickly configure source, destination, and mapping for common ingestion scenarios without manually building the pipeline canvas.
  • Monitoring is available through the Fabric Monitoring hub and pipeline run history, which shows activity-level status, duration, and error details for troubleshooting failed or long-running ingestions.

2 · Check your understanding

Check this objectiveFree · always available

A nightly Fabric pipeline loads customer support ticket records from an on-premises MySQL database into a Lakehouse table. The table holds tens of millions of rows, and only a modest number of tickets are created or edited each day, tracked by a LastUpdatedAt column. A full nightly reload is far too slow for the pipeline's window. What should the engineer implement in the Copy activity to load only the changed rows efficiently?

Your objective map0 tried · 0 answered correctly · 54 untouched

What you have tried across DP-700's objectives, not a readiness score.

Implement and manage an analytics solution30-35% of the exam0 of 18 tried
Ingest and transform data30-35% of the exam0 of 19 tried
Monitor and optimize an analytics solution30-35% of the exam0 of 17 tried

3 · Keep going