简体   繁体   English

如何使用Azure数据工厂获取Sharepoint数据并将其加载到Azure Blob存储中?

[英]How to fetch Sharepoint data and load into Azure Blob Storage using Azure Data Factory?

I want to load data from Sharepoint to Azure Blob Storage using Azure Data Factory. 我想使用Azure数据工厂将数据从Sharepoint加载到Azure Blob存储。 Although I don't know anything about OData but seems it is possible using Odata as mentioned in following tutorial Copy data from OData source to Azure Blob 尽管我对OData一无所知,但似乎可以使用下面的教程中提到的Odata 将数据从OData源复制到Azure Blob

I have setup everything as per the tutorial but it is not working. 我已经按照教程设置了所有内容,但无法正常工作。

Please help/suggest if I am missing something. 如果我缺少任何东西,请帮助/建议。

Below is the configuration I am using for OData linked servce in Azure Data Factory. 以下是我用于Azure Data Factory中的OData链接服务的配置。

{
    "name": "LS_OData",
    "properties": {
        "hubName": "adf_hub",
        "type": "OData",
        "typeProperties": {
            "url": "http://flic.xyzc.com/Sites/WYST/Lists/RAZXE/AllItems.aspx)",
            "authenticationType": "Basic",
            "username": "usrname",
            "password": "**********",
            "gatewayName": "myGateway"
        }
    }
}

NOTE - I am able to get the data using the same URL/credentials using SharePoint REST APIs. 注意-我可以使用SharePoint REST API使用相同的URL /凭据来获取数据。 Also, I have Data Management Gateway installed and working fine for OnPremise SQL and Oracle databases. 另外,我已经安装了数据管理网关,并且可以在OnPremise SQL和Oracle数据库上正常工作。

Follow this Blog to create link for OData source and we used authentication type as windows 按照此博客为OData源创建链接,我们将身份验证类型用作Windows

http://www.odata.org/documentation/odata-version-3-0/url-conventions/ http://www.odata.org/documentation/odata-version-3-0/url-conventions/

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何使用数据工厂将数据从 Azure Blob 存储增量加载到 Azure SQL 数据库? - How to incrementally load data from Azure Blob storage to Azure SQL Database using Data Factory? 如何使用 Odata 链接服务将文件从共享点复制到 blob 存储 azure 数据工厂 v2 - How to copy files from sharepoint into blob storage azure data factory v2 using Odata linked service Azure 数据工厂到 Azure Blob 存储权限 - Azure Data Factory to Azure Blob Storage Permissions 如何在没有 Azure 数据工厂的情况下将 csv 文件从 blob 存储加载到 azure sql 数据库 - How to load csv file from blob storage to azure sql database without Azure Data Factory 如何在 Azure 数据工厂中对 API 数据传输进行 Blob 存储? - How to do a Blob storage to API data transfer in Azure Data Factory? 如何使用 Azure 数据工厂更改 Azure blob 存储中文件的内容类型? - How to change the content-type of the files in Azure blob Storage using Azure Data Factory? Azure blob 存储 - SAS - 数据工厂 - Azure blob storage - SAS - Data Factory 如何使用azure数据工厂将数据从azure SQL数据库增量存储到azure blob存储,基于一些条件:日期需要更新 - How to store data incrementallyfrom azure SQL database to azure blob storage using azure data factory,based on some conditions:date need to be updated 如何从 Azure 数据工厂重命名 Blob 存储文件? - How to rename a blob storage file from Azure Data Factory? 如何从 Azure 数据工厂中的 blob 存储中解压缩.gz 文件? - How to unzip .gz file from blob storage in Azure Data Factory?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM