I have a Storage account in Azure Germany (the sovereign version, not the public cloud) and I want to copy its data to Azure global public storage account using Azure Data Factory.
But Azure Data Factory throws this error:
Invalid storage connection string provided to 'UnknownLocation'. Check the storage connection string in configuration. No valid combination of account information found.
I can't use "AzCopy" because I want schedule this process.
Scenario - Copy data from ".blob.core.cloudapi.de" to ".blob.core.windows.net" using Azure Data Factory
I assume the connection to the German sovereign cloud is the one failing. If so try editing that linked service in ADF and adding the following to the end of the connection string:
;EndpointSuffix=core.cloudapi.de;
This answer is based upon ADF documentation and storage documentation.