简体   繁体   English

我们可以使用 Windows 身份验证将数据从 kusto 导出到 SQL 吗?

[英]Can we export data from kusto to SQL using windows authentication?

I am trying to export data from kusto to sql.我正在尝试将数据从 kusto 导出到 sql。 I see that there is an option of 'Authentication=Active Directory Integrated'.我看到有一个“Authentication=Active Directory Integrated”选项。 But can we do it with just windows authentication?但是我们可以只使用 Windows 身份验证吗?

.export async to sql ['dbo.MySqlTable']
    h@"Server=tcp:abc.database.windows.net,1433;Database=xyz;Authentication=Windows;Connection Timeout=30;"
    with (createifnotexists="true", primarykey="id")
    <|set notruncation;

不,Kusto 仅支持“集成 Active Directory”和 SQL 凭据。

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

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM