MetricSign
EN|NLRequest Access
Medium severitydata source

Power BI Refresh Error:
UserErrorCopyActivityInvalidSinkConfiguration

What does this error mean?

The copy activity sink configuration in Azure Data Factory is invalid — a missing required property, an unsupported combination of settings, or a dataset/linked service mismatch with the selected copy behavior.

Common causes

  • 1A required sink property (e.g., table name, write behavior) is empty or set to an incompatible value
  • 2The sink dataset type does not match the write mode selected
  • 3The linked service connected to the sink dataset was changed to a different connector type after the copy activity was configured
  • 4A dynamic expression in the sink configuration resolves to null or an invalid value at runtime

How to fix it

  1. 1Open the copy activity in ADF Studio and review the Sink tab for missing or invalid configuration values.
  2. 2Verify the sink dataset's linked service type matches the intended target.
  3. 3If using dynamic content in sink properties, add a debug run with known values to verify the expressions resolve correctly.
  4. 4Check the ADF documentation for the specific connector's sink requirements.
  5. 5Delete and recreate the copy activity if the configuration has become corrupted due to linked service changes.

Frequently asked questions

Does this error affect all pipeline runs or just the current one?

Depends on the root cause. A persistent misconfiguration fails every run; a transient issue may resolve on retry. Check the run history.

Can this error appear in Azure Data Factory and Microsoft Fabric pipelines?

Yes — the same connector errors appear in both ADF and Fabric Data Factory pipelines.

How do I see the full error detail for an ADF pipeline failure?

In ADF Monitor, click the failed run, then the failed activity. The detail pane shows the error code, message, and sub-error codes.

Will downstream Power BI datasets be affected when an ADF pipeline fails?

Yes — a dataset refreshing after the pipeline will use stale data or fail if the target table was cleared. The Power BI refresh may succeed while serving wrong data.

Official documentation: https://learn.microsoft.com/en-us/azure/data-factory/data-factory-troubleshoot-guide

Other data source errors