Following my previous Q&A,
How to get the File Shares list in the metadata activity and copy all the file shares and inside data as-is to the destination storage account?
Linked Service for Source storage:
Linked Service for destination storage:
In the Linked Service, I have edited like below:
Error:
{
"code": "BadRequest",
"message": null,
"target": "pipeline//runid/3625b19c-e9b6-494a-a704-17acb13dda04",
"details": null,
"error": null
}
Copy Data Activity: Source:
The issue is because you have same dataset for both getmetadata activity
and source of copy activity
. You can change the dataset of get metadata activity
+New
in the settings of get metadata activity to create new dataset.Once created new dataset, add child items as argument in the field list.
This way, you can change the dataset in metadata activity and make sure that it is different to the one on copy activity.