Reputation: 2825
I am copying data from JSON file to Azure SQLDB. The data in JSON looks like the following:
The data that is sent to Azure SQLDB looks like the following:
You will notice the Businessday, Finaldeadlineday, CommentaryWriter, and TemplateCode aren't copied to the Azure SQLDB
Can someoone explain why this is? And how to get to copy all the fields from the JSON file to Azure SQLDB please
Upvotes: 0
Views: 88
Reputation: 11464
To achieve your required output, you need to use Collection reference and Advanced editor in the copy activity mapping.
Here, you can remove the extra columns and give the required data types for the target columns.
Result table:
Upvotes: 0