Medium severityconfiguration
Power BI Refresh Error:
WildcardPathSinkNotSupported
What does this error mean?
The sink configuration uses a wildcard path pattern, which is not supported when writing data. Wildcard patterns are only valid for source datasets, not sink datasets.
Common causes
- 1Wildcard path not supported for sink
- 2Integration runtime configuration is incorrect or outdated
- 3Authentication credentials or permissions are insufficient
- 4The feature or setting is not supported for the selected connector or copy mode
How to fix it
- 1Open the copy activity's sink dataset and remove the wildcard character (* or ?) from the file path — sink paths must be a fixed, fully specified path where ADF can write the output file.
- 2If the intention was to write to a dynamically named file, use an ADF expression instead of a wildcard — for example, set the file name to @concat('output_', formatDateTime(utcNow(), 'yyyyMMdd'), '.csv') in the sink dataset settings.
- 3If you need to read from multiple files (wildcard source) and write to a single output, that is the correct configuration — wildcards are valid in the source, not the sink.
- 4Check whether the path was copied from a source dataset configuration — source wildcard paths cannot be reused directly as sink paths.
- 5After fixing the sink path, validate the pipeline using the 'Validate' button in ADF Studio before running.
Frequently asked questions
Official documentation: https://learn.microsoft.com/en-us/azure/data-factory/connector-troubleshoot-guide