ePrivacy and GPDR Cookie Consent by Cookie Consent Skip to main content

Loader MySQL

Loader MySQL imports CSV data into MySQL database.

Data In/Data Out

Data In Upload all files in /data/in/files
Data Out N/A

Learn more: about the folder structure here.

Parameters

MySQL 1.png

Host (required) Name of the server that hosts the database.
Port (required) The port number you want to access. 
Database (required) Name of the database.
User (required) Account name. 
Password (required) Account password. 

 

MySQL 2.png

Enabled (optional) If you want a certain table to be pulled from the database.
Private (optional) Private key. 
Public (optional) Public key.
SSH Host (optional) Name of SSH Host.host.

 

MySQL 3.png

Input Table (required) The name of the input table you want to load to the database. 
DB Table Name (required) The name of the table that will be created in the database. 
Incremental Signifies if you want to load the data by overwriting whatever is in the database or incrementally.
Column (required)

Defines primary key column. Can be used with incremental load.

Incremental load with primary key - just rows with unique primary key will be loaded.

Primary keys witnoutwithout incrementalincrement - all rows loaded, but columns set as primary key in loader will be also PKsprimary keys in destination.

 

MySQL 4.png

Column Name (required) Refers to the column in the input csvCSV file.
DB Column Name (required) Refers to how this column will be named in the destination database.

Data Type (required)

The data type used in the column.

Size (optional)

The maximum number of digits used by the data type of the column or parameter.

Nullable (optional)

If you want the value in this column to be nullable.
Default Value (optional)

The default value that is inserted for empty values in the column. For example,  inserts NULLs in destination columns database for empty strings in csv file. - inserts - for empty strings.