I have a csv file as input which I have stored in Azure Blob Storage. I want to read data from csv file, perform some transformations on it and then store data in Azure SQL Database. I am trying to use a C# custom activity in Azure Data Factory having blob as input and sql table as output dataset. I am following this tutorial (https://azure.microsoft.com/en-us/documentation/articles/data-factory-use-custom-activities/#see-also) but it has both input and output as blobs. Can I get some sample code for sql database as output as I am unable to figure out how to do it. Thanks
相关问题
- Azure Data Factory connecting to Blob Storage via
- Azure Data Factory and SharePoint
- How to get the Azure Data Factory parameters into
- Is possible to read an Azure Databricks table from
- Azure data factory and stored procedure
相关文章
- Execute python scripts in Azure DataFactory
- Azure Data Factories vs SSIS
- Optimizing SSIS package for millions of rows with
- Transfer file from Azure Blob Storage to Google Cl
- Using Azure Data Factory to get data from a REST A
- 使用VSTS数据工厂V1 CI / CD管道(CI/CD pipeline for Data fac
- 获取子活动子树(Get Child Activity Subtree)
- 获取子活动子树(Get Child Activity Subtree)
You just need to fetch connection string of your Azure SQL database from a linked service and then you can talk to database. Try this sample code: