Hi, I'm Ask INFA!
What would you like to know?
ASK INFAPreview
Please to access Ask INFA.

Prerequisites to connect to a serverless SQL pool

Prerequisites to connect to a serverless SQL pool

Configuring Microsoft SQL server authentication

Configuring Microsoft SQL server authentication

Configure Microsoft SQL Server authentication to connect to Microsoft Azure Synapse SQL.
  1. Access Microsoft SQL Server Management Studio to connect to Microsoft Azure Synapse SQL using the Azure Active Directory admin credentials.
  2. Create an SQL user. To do this, type and run the following command:
    USE master
    CREATE login <username> WITH PASSWORD = <password>
    USE test2
    CREATE USER <username> FOR LOGIN <username>
    ALTER ROLE [db_owner] ADD MEMBER <username>
    The SQL user must be a local user and must be assigned a db_owner role to execute queries.

0 COMMENTS

We’d like to hear from you!