SE の雑記

SQL Server の情報をメインに Microsoft 製品の勉強内容を日々投稿

SQL Server 2016 CTP 2.1 の SSMS の認証方式の追加についてのメモ

leave a comment

先日、SQL Server 2016 CTP 2.1 の SSMS を使っていて気づいたのですが、CTP 2.1 の SSMS では選択できる認証方式が追加されているようです。

image

What’s New in Database EngineEnhancements の以下の記載が該当する機能になるのでしょうかね。

[CTP 2.0] SQL Server Management Studio supports the Active Directory Authentication Library (ADAL) which is under development for connecting to Microsoft Azure. This replaces the certificate-based authentication used in SQL Server 2014 Management Studio.

 

ログイン系の作成方法がわかっていないのですが、認証の方式として「Active Directory パスワード認証」「Active Directory Integrated Authentication」が追加されているようです。

情報としては 2.2 Keys and Values に記載されているものが、現状公開されているものでしょうか。

§ "Active Directory Password": Indicates federated authentication<3> with user name and password. If this value is specified, the User ID and Password keys MUST also be specified, unless the user name and the password are passed as a secure string by using SqlClient programming interfaces. SqlClient contacts a security token service (STS) to obtain a security token for the database. STS validates the user name and password in Active Directory, which acts as an identity provider. Subsequently, SqlClient uses the security token to connect to the database.

§ "Active Directory Integrated": Indicates that a user connects by using either Kerberos [RFC4120] or another platform-specific authentication process, such as NTLM [MSDN-NTLM]. <4> If this value is set, the User ID and Password keys MUST NOT be set.

時間があるときに、追加の情報があるか探してみたいと思います。

Share

Written by Masayuki.Ozawa

7月 14th, 2015 at 11:54 pm

Posted in SQL Server

Tagged with ,

Leave a Reply