An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
Hi Bias CRM
This error mean the user is invalid in the database that you are trying to connect, usually related to a AAD user that does not have user created on SQL DB that you are trying to connect (User DB or Master DB) or that the user is not the AAD Server Admin
Recommended fix
Use SQL authentication:
- Create a SQL login + user in your Synapse SQL pool:
CREATE LOGIN qlik_user WITH PASSWORD='StrongPassword!';
CREATE USER qlik_user FROM LOGIN qlik_user;
ALTER ROLE db_datareader ADD MEMBER qlik_user;
In Qlik, choose SQL (username/password) authentication.
Also Check Networking
- Ensure Public network access is enabled for Synapse SQL.
- Add Qlik Cloud outbound IPs to the SQL firewall, or enable Allow Azure services.
If you must use Azure AD
You need to register a service principal, assign permissions, and create an EXTERNAL PROVIDER user — but Qlik often has limited AAD support, so SQL authentication is generally the reliable method.
Once SQL auth + firewall rules are set correctly, Qlik’s connection test should succeed.
Hope this helps, Please let us know if you have any questions and concerns.
If this solution helped resolve your issue, please consider clicking ‘Accept Answer’ or giving it an upvote to help others find it easily.