从Oracle迁移数据以及从XML转换为JSon

时间:2018-08-30 22:11:40

标签: oracle azure azure-cosmosdb azure-data-factory

Azure数据工厂可以将字符串从Oracle(xml)转换为JSon对象,以作为对象保存在Cosmos中的集合中吗? 我已经尝试过,但是在Cosmos DB中,我只得到一个字符串(json对象)作为简单属性。

1 个答案:

答案 0 :(得分:0)

根据我的经验,azure数据工厂可以传输数据,但不会帮助您执行一些序列化步骤。因此,存储在cosmos db中的数据可能像"info": "{\"Id\":\"1\",\"Name\":\"AA\",\"Address\":\"HQ - Main Line\"}"

要使用此解决方案,建议您使用Azure Function Cosmos DB Trigger。请参考我的代码:

using System;
using System.Collections.Generic;
using Microsoft.Azure.Documents;
using Microsoft.Azure.Documents.Client;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Host;
using Newtonsoft.Json.Linq;

namespace ProcessJson
{
    public class Class1
    {
        [FunctionName("DocumentUpdates")]
        public static void Run(
        [CosmosDBTrigger(databaseName:"db",collectionName: "item", ConnectionStringSetting = "CosmosDBConnection",LeaseCollectionName = "leases",
            CreateLeaseCollectionIfNotExists = true)]
        IReadOnlyList<Document> documents,
        TraceWriter log)
        {
            log.Verbose("Start.........");
            String endpointUrl = "https://***.documents.azure.com:443/";
            String authorizationKey = "***";
            String databaseId = "db";
            String collectionId = "import";

            DocumentClient client = new DocumentClient(new Uri(endpointUrl), authorizationKey);

            for (int i = 0; i < documents.Count; i++)
            {
                Document doc = documents[i];
                String info = doc.GetPropertyValue<String>("info");
                JObject o = JObject.Parse(info);

                doc.SetPropertyValue("info", o);

                client.ReplaceDocumentAsync(UriFactory.CreateDocumentUri(databaseId, collectionId, doc.Id), doc);

                log.Verbose("Update document Id " + doc.Id);
            }
        }
    }
}

此外,您可以参考我以前的案例:Azure Cosmos DB SQL - how to unescape inner json property

希望它对您有帮助。