Medium severitydata source
Power BI Refresh Error:
SqlParallelFailedToDetectPhysicalPartitions
What does this error mean?
ADF could not detect physical partitions of the SQL table for parallel copy — the table may not have physical partitions or they are not accessible.
Common causes
- 1The SQL table does not use physical partitioning and ADF was configured to use physical partition copy mode
- 2ADF lacks SELECT permission on the SQL Server system views needed to query partition metadata
- 3The partitioning scheme or function has been removed from the table since the pipeline was configured
How to fix it
- 1Switch from "physical partitions" to "dynamic range" partition mode in the copy activity source settings.
- 2Verify the table is partitioned using: SELECT * FROM sys.partitions WHERE object_id = OBJECT_ID('<table>').
- 3Ensure the ADF linked service identity has SELECT access to sys.partitions and sys.partition_range_values.
Frequently asked questions
Official documentation: https://learn.microsoft.com/en-us/azure/data-factory/connector-troubleshoot-synapse-sql