Authenticate to dedicated SQL pool (formerly SQL DW) in Azure Synapse Analytics

Learn how to authenticate to dedicated SQL pool (formerly SQL DW) in Azure Synapse by using Azure Active Directory (Azure AD) or SQL Server authentication.

To connect to a dedicated SQL pool (formerly SQL DW), you must pass in security credentials for authentication purposes. Upon establishing a connection, certain connection settings are configured as part of establishing your query session.

For more information on security and how to enable connections to your dedicated SQL pool (formerly SQL DW), see securing a database documentation.

SQL authentication

To connect to dedicated SQL pool (formerly SQL DW), you must provide the following information:

  • Fully qualified servername
  • Specify SQL authentication
  • Username
  • Password
  • Default database (optional)

By default, your connection connects to the master database and not your user database. To connect to your user database, you can choose to do one of two things:

  • Specify the default database when registering your server with the SQL Server Object Explorer in SSDT, SSMS, or in your application connection string. For example, include the InitialCatalog parameter for an ODBC connection.
  • Highlight the user database before creating a session in SSDT.

Note

The Transact-SQL statement USE MyDatabase; is not supported for changing the database for a connection. For guidance connecting to a SQL pool with SSDT, refer to the Query with Visual Studio article.

Azure Active Directory authentication

Azure Active Directory authentication is a mechanism of connecting to SQL pool by using identities in Azure Active Directory (Azure AD). With Azure Active Directory authentication, you can centrally manage the identities of database users and other Microsoft services in one central location. Central ID management provides a single place to manage dedicated SQL pool (formerly SQL DW) users and simplifies permission management.

Benefits

Azure Active Directory benefits include:

  • Provides an alternative to SQL Server authentication.
  • Helps stop the proliferation of user identities across servers.
  • Allows password rotation in a single place
  • Manage database permissions using external (Azure AD) groups.
  • Eliminates storing passwords by enabling integrated Windows authentication and other forms of authentication supported by Azure Active Directory.
  • Uses contained database users to authenticate identities at the database level.
  • Supports token-based authentication for applications connecting to SQL pool.
  • Supports Multi-Factor authentication through Active Directory Universal Authentication for various tools including SQL Server Management Studio and SQL Server Data Tools.

Note

Azure Active Directory is still relatively new and has some limitations. To ensure that Azure Active Directory is a good fit for your environment, see Azure AD features and limitations, specifically the Additional considerations.

Configuration steps

Follow these steps to configure Azure Active Directory authentication.

  1. Create and populate an Azure Active Directory
  2. Optional: Associate or change the active directory that is currently associated with your Azure Subscription
  3. Create an Azure Active Directory administrator for Azure Synapse
  4. Configure your client computers
  5. Create contained database users in your database mapped to Azure AD identities
  6. Connect to your SQL pool by using Azure AD identities

Currently Azure Active Directory users are not shown in SSDT Object Explorer. As a workaround, view the users in sys.database_principals.

Find the details

Next steps

To start querying with Visual Studio and other applications, see Query with Visual Studio.