This article explains how to connect to Databricks from Exasol and load data.
Download the Databricks JDBC driver from JDBC Drivers Archive | Databricks.
Create a configuration file called settings.cfg
with the following settings:
DRIVERNAME=DATABRICKS
PREFIX=jdbc:databricks:
NOSECURITY=YES
FETCHSIZE=100000
INSERTSIZE=-1
The settings.cfg file must end with an empty line (line break followed by zero characters).
To know how to upload the JDBC driver and the configuration file to BucketFS, see Add JDBC Driver.
For information about how to create a connection string, see Create a Named Connection in our GitHub repository.
Use IMPORT to load data from a table or SQL statement using the connection that you created.