DataFlush Home
A tool that allows you to move data from a source to a destination
Brought to you by:
amattioli70
Create a .csv file like the following:
col1;col2
first;second
third;fourth
The first row contains the header with column names, the others are data rows.
Call it source.csv and put it in any directory you want.
Now, in the same directory, create the example.script file containing:
#
FROM CSV
fileName: source.csv
headers: true
delimiter: ;
#
TO CSV
fileName: dest.csv
headers: true
delimiter: ,
#
COLUMN col1 => (1) name:dest1
COLUMN col2 => (0) name:dest2