Discover how a bimodal integration strategy can address the major data management challenges facing your organization today.
Get the Report →How to connect to SQL Analysis Services Data with Squirrel SQL client
Connect to SQL Analysis Services data and execute queries in the Squirrel SQL Client.
The CData JDBC Driver for SQL Analysis Services enables you to execute queries to SQL Analysis Services data in tools like Squirrel SQL Client. In this article, you will create a JDBC data source for SQL Analysis Services data and execute queries.
Add the JDBC Driver for SQL Analysis Services
Follow the steps below to add the driver JAR.
- In Squirrel SQL, click Windows -> View Drivers.
- Click the plus icon to open the Add Driver wizard.
- In the Name box, enter a user-friendly name for the driver; for example, CData JDBC Driver for SQL Analysis Services.
- In the Example URL box, enter jdbc:ssas:
- In the Extra Class Path tab, click Add.
- In the file explorer dialog that opens, select the JAR file for the driver, located in the lib subfolder of the installation directory.
- Click List Drivers to populate the Class Name menu with the class name for the driver, cdata.jdbc.ssas.SSASDriver.
Define Connection Properties
Follow the steps below to save connection properties in the driver alias.
- Click Windows -> View Aliases.
- In the pane that lists the aliases, click the plus icon.
In the Add Alias wizard that opens, the following fields are required for the JDBC driver:
- Name: Enter a name for the alias; for example, CData SQL Analysis Services Source.
- Driver: Select the CData JDBC Driver for SQL Analysis Services.
- URL: Enter jdbc:ssas:
- User Name: Enter the username, which is added to the JDBC URL.
- Password: Enter the password, which is added to the JDBC URL.
- If you want to define any additional properties, click Properties.
- In the Driver properties tab of the dialog that appears, select the Use driver properties checkbox.
- In the Specify column, select the checkboxes for the required connection properties.
To connect, provide authentication and set the Url property to a valid SQL Server Analysis Services endpoint. You can connect to SQL Server Analysis Services instances hosted over HTTP with XMLA access. See the Microsoft documentation to configure HTTP access to SQL Server Analysis Services.
To secure connections and authenticate, set the corresponding connection properties, below. The data provider supports the major authentication schemes, including HTTP and Windows, as well as SSL/TLS.
-
HTTP Authentication
Set AuthScheme to "Basic" or "Digest" and set User and Password. Specify other authentication values in CustomHeaders.
-
Windows (NTLM)
Set the Windows User and Password and set AuthScheme to "NTLM".
-
Kerberos and Kerberos Delegation
To authenticate with Kerberos, set AuthScheme to NEGOTIATE. To use Kerberos delegation, set AuthScheme to KERBEROSDELEGATION. If needed, provide the User, Password, and KerberosSPN. By default, the data provider attempts to communicate with the SPN at the specified Url.
-
SSL/TLS:
By default, the data provider attempts to negotiate SSL/TLS by checking the server's certificate against the system's trusted certificate store. To specify another certificate, see the SSLServerCert property for the available formats.
You can then access any cube as a relational table: When you connect the data provider retrieves SSAS metadata and dynamically updates the table schemas. Instead of retrieving metadata every connection, you can set the CacheLocation property to automatically cache to a simple file-based store.
See the Getting Started section of the CData documentation, under Retrieving Analysis Services Data, to execute SQL-92 queries to the cubes.
Below is a typical connection string:
jdbc:ssas:User=myuseraccount;Password=mypassword;URL=http://localhost/OLAP/msmdpump.dll;
-
HTTP Authentication
- In the dialog that appears after you click OK, click connect to test the connection.
Discover Schemas and Query SQL Analysis Services Data
After the metadata has loaded, a new tab for the SQL Analysis Services data source is displayed. On the Objects subtab, you can discover schema information, such as the available tables and views.
To view table data, select the table on the Objects tab. The table data is then loaded in a grid on the Content tab.
To execute an SQL query, enter the query on the SQL tab and then click Run SQL (the runner icon). For example:
SELECT Fiscal_Year, Sales_Amount FROM Adventure_Works