How to provide connection string dynamically for azure table storage/blob storage in Azure data factory Linked service

前端 未结 2 1956
别那么骄傲
别那么骄傲 2021-01-21 22:35

Dynamically changing the connection string for Tablestorage or blob storage in Azure data factory. Currently, I could see such option for database related dataset? How to achie

2条回答
  •  误落风尘
    2021-01-21 23:30

    In the New Linked service Azure table storage and Click on Advanced and check Specify Dynamic contents in JSON format adf

    Copy the below JSON to make it Table Storage Parameterize : { "name": "Table", "type": "Microsoft.DataFactory/factories/linkedservices", "properties": { "type": "AzureTableStorage", "typeProperties": { "sasUri": { "type": "SecureString", "value": "@{linkedService().sasUriParam}" } }, "parameters": { "sasUriParam": { "type": "String" } }, "annotations": [] } }

提交回复
热议问题