user3268044
user3268044

Reputation: 31

Using Azure Data Factory, how to extract data from arrays in documents of DocumentDB to SQL Database

I need to extract arrays from documents in a DocumentDB and copy to SQL Database using Azure Data Factory..

I need to implement the same functionality of using jsonNodeReference and jsonPathDefinition in "Sample 2: cross apply multiple objects with the same pattern from array" of this article:

https://learn.microsoft.com/en-us/azure/data-factory/data-factory-supported-file-and-compression-formats#json-format

Upvotes: 0

Views: 1698

Answers (1)

Tom Sun
Tom Sun

Reputation: 24569

According to your mentioned File and compression formats supported by Azure Data Factory, it seems that it is not supported to extract data from documentdb to SQL database with Azure Data Factory Copy Activity currently. We could give our feedback to Azure document Team.

This topic applies to the following connectors: Amazon S3, Azure Blob, Azure Data Lake Store, File System, FTP, HDFS, HTTP, and SFTP.

But we also could use custom activities in an Azure Data Factory pipeline or Azure WebJob/Function with customized logic to do that.

Some related documents:

How to to Query Azure Cosmos DB resources

How to operate Azure SQL Database

Upvotes: 0

Related Questions