From the logs, it seems the connection is successfully established. In that case, I believe the challenge is really with how you extract the data from Azure Analysis Services.
We need to be mindful that Azure Analysis Services is an OLAP database that exposes data as cubes, which you query with MDX (multidimensional expressions). The driver models these cubes in relational views that you can query with SQL-92.
Ideally, the following mapping is for the layout of the model:
Catalog - Displayed in the driver as a Catalog.
Cube - Displayed in the driver as a Schema.
Measure - Available in the driver under the special Measures view.
Dimension - Each dimension is exposed as a view.
Level - Each individual level of a hierarchy is exposed as a column on the appropriate dimension view.
Have you tried setting up the logging with high verbosity to see what is causing this and if any error was captured? Also, can you share the sample request that you made to the CData Azure Analysis JDBC Driver?
To enable logging, set following connection properties:
From the logs, it seems the connection is successfully established. In that case, I believe the challenge is really with how you extract the data from Azure Analysis Services.
We need to be mindful that Azure Analysis Services is an OLAP database that exposes data as cubes, which you query with MDX (multidimensional expressions). The driver models these cubes in relational views that you can query with SQL-92.
Ideally, the following mapping is for the layout of the model:
Catalog - Displayed in the driver as a Catalog.
Cube - Displayed in the driver as a Schema.
Measure - Available in the driver under the special Measures view.
Dimension - Each dimension is exposed as a view.
Level - Each individual level of a hierarchy is exposed as a column on the appropriate dimension view.
SELECT m.[Customer Count], c.[City] FROM [AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer AS c INNER JOIN [AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Measures AS m
How could I know the name of the Catalog and Schema of Azure Analysis Service?
On Azure Portal, the Analysis Service just shows the Models list, the name of the models