Reputation: 21
I would like to query data from Azure Synapse Analytics with DBeaver.
I am using the community version of DBeaver
On the machine which I am running DBeaver, I have installed the MS SQL Server ODBC driver
I have created the connection to Azure Synapse Analytics and it is successfully connecting to the server/instance
On the 'Database Navigator', when I do a drop down list on my connection, I see the different SQL Pools/Databases that I have created.
When I do a drop down on each database, I only see the schemas 'dbo', 'INFORMATION_SCHEMA' and 'sys'. But I do not see the schemas that I have created.
When I do a drop down on each schema, I see tables, views, indexes, procedures, data types. When I do a drop down on 'tables' or 'views', I do not see anything.
Has someone tried querying data from Synapse Analytics with DBeaver ?
Has someone also experienced the same, not able to see all the schemas or to read any tables ?
Thank you for your help!
Upvotes: 2
Views: 3409
Reputation: 694
The easiest method is to choose to connect to 'Azure SQL Server':
Then, on the next screen, all you need to do is fill in the Host
, Username
, and Password
. The Host
is the value you get from your Synapse Workspace for the Serverless SQL endpoint
.
Like this:
Then it should connect successfully. 👍
Upvotes: 1