跳到主内容

数据工厂支持适用于 SQL 数据库和 SQL 数据仓库的 Azure AD 身份验证

发布日期:三月 23, 2018

作为 SQL Server 身份验证的替换方案,Azure 数据工厂 V2 现支持适用于 Azure SQL 数据库和 SQL 数据仓库的 Azure Active Directory (Azure AD) 身份验证。 

已启用两种 Azure AD 身份验证模式。 有关用于满足先决条件的步骤,请参阅以下 ACOM 链接。

对于 SQL 数据库:

对于 SQL 数据仓库:

已通过基于 UI 的创作以及通过 JSON 启用 Azure AD 身份验证:

AAD

使用服务主体身份验证的链接服务定义的 JSON 有效负载示例:

{
    "name": "AzureSqlDbLinkedService",
    "properties": {
        "type": "AzureSqlDatabase",
        "typeProperties": {
            "connectionString": {
                "type": "SecureString",
                "value": "Server=tcp:<servername>.database.windows.net,1433;Database=<databasename>;Connection Timeout=30"
            },
            "servicePrincipalId": "<service principal id>",
            "servicePrincipalKey": {
                "type": "SecureString",
                "value": "<service principal key>"
            },
            "tenant": "<tenant info, e.g. microsoft.onmicrosoft.com>"
        },
        "connectVia": {
            "referenceName": "<name of Integration Runtime>",
            "type": "IntegrationRuntimeReference"
        }
    }
}

 

  • Azure 数据工厂
  • Azure SQL 数据库
  • Azure Synapse Analytics
  • Features