Load data from MySQL
This section explains how to connect to a MySQL database with Exasol and then load data.
To view details about data type mappings or to migrate data, see the MySQL to Exasol migration script in our GitHub repository.
Prerequisites
-
The MySQL server must be reachable from the Exasol system.
-
The user credentials in the connection must be valid.
Download driver
Download the JDBC driver for MySQL from the MySQL Connectors page. In the Select Operating System dropdown menu, select Platform Independent.
Configure the driver in EXAoperation
Do the following to configure the driver in EXAoperation:
- Log in to EXAoperation user interface as an Administrator user.
- Select Configuration > Software and click the JDBC Drivers tab.
- Click Add to add the JDBC driver details.
- Enter the following details for the JDBC properties:
- Driver Name:
MySQL
- Main Class:
com.mysql.jdbc.Driver
- Prefix:
jdbc:mysql:
- Disable Security Manager: Check the box to disable the security manager. This allows the JDBC Driver to access certificate and additional information.
- Comment: This is an optional field.
- Driver Name:
- Click Add to save the settings.
- Select the radio button next to the driver from list of JDBC driver.
- Click Choose File to locate the downloaded driver and click Upload to upload the JDBC driver.
Create connection
To create a connection, run the following statement. Replace the connection string and credentials as needed.
The MySQL user must have enough privileges to create a connection.
CREATE OR REPLACE CONNECTION JDBC_MYSQL
TO 'jdbc:mysql://192.168.99.100:3306/my_database'
USER 'user_name'
IDENTIFIED BY 'my_password';
To test the connection, run the following statement.
Load data
You can use the IMPORT statement to load data using the connection you created above. IMPORT supports loading data from a table or a SQL statement.