Liquibase Enterprise was formerly known as Datical DB.

Creating Connections in Liquibase Enterprise and Azure SQL Managed Instance

There are the following types of connection and authentication (security) options available in Datical DB:

  • Microsoft SQL Server with the SQL Authentication and Integrated Security

  • Azure SQL Database and Azure SQL Managed Instance with:

    • SQL Authentication

    • Active Directory Integrated Authentication

    • Active Directory Password Authentication

    • Active Directory MSI Authentication

SQL Authentication

SQL Authentication refers to the authentication of a user when connecting to Azure SQL Managed Instance and using username and password.

If you are a server admin, you can authenticate to any database on the server or instance as the database owner and create additional SQL logins and users, which enable users to connect using username and password.

To connect to Azure SQL Managed Instance with the SQL Authentication (security) from Datical DB, enter the following information:

  • Username

  • Password

  • Hostname

  • Port

  • Database name

  • Instance name

Azure Active Directory Authentication

The Azure Active Directory authentication refers to the authentication of a user when connecting to Azure SQL Managed Instance and using identities in Azure Active Directory.

Prerequisites

To use the Azure Active Directory authentication mode, you need to сonfigure Azure AD with Azure Managed Instance.

Active Directory Integrated Authentication

Active Directory Integrated Authentication is a mechanism of connecting to Azure SQL Managed Instance by using the Azure Directory integrated mode.

To use the Active Directory Integrated Security authentication option, follow these steps:

For more information about requirements, see Configure your client computers.

  • Check whether you can see the adal.dll file in the C:\Windows\System32 and C:\Windows\SysWOW64 folders, which is needed for the Active Directory Integrated connection. The adal.dll file will be automatically added to these folders after you install the OLE DB driver.

In case you have issues with the adal.dll file, see Troubleshooting Issues with Active Directory Authentication.

  • Ensure that you federated the on-premise Active Directory Federation Services (AD FS) with the Azure Active Directory in the cloud.

  • Make the connection from a domain-joined machine that is connected with Azure Active Directory. Additionally, a database user representing your Azure Active Directory principal, or one of the groups to which the user belongs, needs to exist in the database and have the CONNECT permission.

  • Run the following scripts:

CREATE LOGIN [testuser@onmicrosoft.com] FROM EXTERNAL PROVIDER; CREATE USER [testuser@onmicrosoft.com] FOR LOGIN [testuser@onmicrosoft.com]; ALTER ROLE [db_datareader] ADD MEMBER [testuser@onmicrosoft.com]; ALTER ROLE [db_datawriter] ADD MEMBER [testuser@onmicrosoft.com]; ALTER ROLE [db_ddladmin] ADD MEMBER [testuser@onmicrosoft.com];
  • Ensure that the SQL Server JDBC Driver Authentication Library is in C:\Windows\System32. The file name
    is mssql-jdbc_auth-<version>-<arch>.dll, where version is a version number for the file.

  • Obtain the library from the following file after you install the SQL Server JDBC Driver: <datical-install>\plugins\com.datical.db.drivers.mssql_<version>.jar if this library is not in C:\Windows\System32.

  • Open or extract the jar file using an archive utility to access its contents. The DLL is located in the following archive location: com.datical.db.drivers.mssql_1.0.24.jar\auth\<arch>\mssql-jdbc_auth-<version>.<arch>.dll.

  • Put the DLL in C:\Windows\System32.

To create a connection with the Active Directory Integrated mode in Datical DB, select the following:

  • Connection Type – Azure SQL Managed Instance

  • Security – Active Directory Integrated Security

Also, enter your hostname, port, application name, database name, and instance name.

Active Directory Password Authentication

As Azure Active Directory Password Authentication is a mechanism for connecting to Azure SQL Managed Instance by using identities in Azure Active Directory, you can connect to applications by using an Azure Active Directory username and password.

To create a connection with the Active Directory Password mode in Datical DB, select the following:

  • Connection Type - Azure SQL Managed Instance

  • Security - Active Directory Password Authentication

Also, enter your hostname, port, application name, database name, instance name, username, and password.

Active Directory MSI Authentication

You can use Active Directory MSI Authentication for connection from inside an Azure Resource with the Identity feature.

To use the Active Directory MSI Authentication, you need a contained database user representing your Azure Resource's System Assigned Managed Identity or User Assigned Managed Identity, or one of the groups to which your Managed Identity belongs, which must exist in the target database and have the CONNECT permission.

Optionally, to acquire the accessToken for establishing the connection, you can specify msiClientId in the Connection or DataSource properties along with the Active Directory MSI Authentication mode, which must include the Client ID of a Managed Identity.

To create a connection with the Active Directory MSI mode in Datical DB, select the following:

  • Connection Type - Azure SQL Managed Instance

  • Security - Active Directory MSI Authentication

Also, enter your hostname, port, application name, database name, instance name, and MSI Client ID.

Copyright © Liquibase 2012-2022 - Proprietary and Confidential