Reputation: 1
Goal is to extract data from Offce 365 via Azure Data Factory into a SQL Server. It seems like that it is only possible to sink the data from an Office source into the following technologies:
Azure Copy Object:
Sinks für Offce Source:
How is that possible?
Upvotes: 0
Views: 60
Reputation: 5074
Currently, you can only copy data from Office 365 to Azure Blob Storage, Azure Data Lake Storage Gen1, and Azure Data Lake Storage Gen2 in JSON format.
You can copy data to blob storage using a copy activity first and then connect it to another copy activity to copy from storage to the SQL server.
Upvotes: 1
Reputation: 4925
Based on my understanding you need to select dataset as binary format when configuring source and sink. So the sink presents with the Binary format sources:
So 1st step would be to copy the data into blob as a file and then copy from file into SQL
Upvotes: 0