Working with Java data in Alteryx
Alteryx provides a workflow interface for non-specialists to extract value from multiple data sources. Alteryx like many other analytics applications supports ODBC, a generic data access interface, which enables the default choice of data sources to be extended. Alteryx does not include a connector that will allow it to access a Java data source, however.
Java data sources are accessed by using a connector called a JDBC driver. A JDBC driver allows a Java application to access external data. For example, the Gemfire XD JDBC driver allows Java applications to access data stored in Gemfire XD.
Alteryx is not written in Java however. Alteryx uses an ODBC driver, a different piece of database middleware, to access external data. (It also includes a number of dedicated connectors, for example one that enables Alteryx to access Salesforce.)
The ODBC-JDBC Gateway connects an application that uses ODBC to an application that uses JDBC. To the application, the ODBC-JDBC Gateway is an ODBC driver. To the JDBC driver the ODBC-JDBC Gateway is a Java application.
Installing and licensing the ODBC-JDBC Gateway
- Download the Windows ODBC-JDBC Gateway.
- Install and license the ODBC-JDBC Gateway on the Windows machine where Alteryx is installed.
For installation instructions, refer to the ODBC-JDBC Gateway documentation.
- Use the ODBC-JDBC Gateway Setup Java Interface dialog box to select the JVM included in the JRE and JDK distribution recommended by your Java database vendor.
Configuring an ODBC data source
Before you can use the ODBC-JDBC Gateway to connect Alteryx to a Java database, you need to configure an ODBC data source. An ODBC data source stores the connection details for the target database.
You configure ODBC data sources in ODBC Data Source Administrator, which is included with Windows. On some versions of Windows, ODBC Data Source Administrator is located in Control Panel > Administrative Tools. On some versions of Windows, you can access ODBC Data Source Administrator by searching for "ODBC" in the taskbar search box. If presented with a choice of ODBC Data Source Administrators, choose 64-bit rather than 32-bit.
Use ODBC Data Source Administrator to create your ODBC-JDBC Gateway data source.
Creating a ODBC-JDBC Gateway ODBC data source
- Choose the System DSN tab, and then choose Add.
- In the Create New Data Source dialog box, choose ODBC-JDBC Gateway, and then choose Finish.
- Complete the ODBC-JDBC Gateway DSN Setup dialog box:
Setting Value DSN Some descriptive text to identify the data source in Alteryx. Driver Class The driver class that identifies the JDBC driver for your target Java back end. For example, the Gemfire XD JDBC driver's class name is com.pivotal.gemfirexd.jdbc.ClientDriver
Class Path The path to the JDBC driver JAR file. For example, Gemfire XD's JDBC driver JAR file is: C:\Pivotal_GemFireXD_140_b50226_Windows\lib\gemfirexd-client.jar
URL The JDBC URL that contains the necessary connection details to access your target Java database. Refer to your JDBC driver documentation for the correct JDBC URL syntax. For example, a JDBC URL for Gemfire XD:
jdbc:gemfirexd://localhost:1527/
- Use the Test button to verify that you can successfully connect to your Java database.
You can now use the ODBC-JDBC Gateway Data Source to connect Alteryx to your Java database.
Connecting Alteryx to a Java database
- In Alteryx, add an Input Data control to your workflow.
- In the Input Data properties pane, in the Connect a File or Database list, choose Database Connection > New ODBC Connection.
The ODBC Connection dialog box is displayed.
- In the Data Source Name list, choose your ODBC-JDBC Gateway data source. Choose OK.
The Choose Table or Specify Query dialog box is displayed.
- Choose the SQL Editor tab. Enter a query, for example
SELECT * FROM QUICKTABLE
. Choose OK. - To retrieve your Java data in Alteryx, in the Input Data properties pane, choose Update Sample.