Problem : Configure Azure SQL DB so Azure AD Users can login to the server using SSMS, and be authenticated.
The Normal Process to configure a User in SQL is
- Create Login
- Create Users
- Assign Roles
However, I am not able to create Login in a way that Password does not need to be specified, and the user can Login.
Do I need to use this command ? ' CREATE LOGIN login_name [FROM EXTERNAL PROVIDER] { WITH [,..]}
<option_list> ::=
PASSWORD = {'password'}
| SID = sid
| DEFAULT_DATABASE = database
| DEFAULT_LANGUAGE = language
' How can we do this without having to create a password, since it will be Azure Active Directory Integrated ?