What's the best FREE solution to implement one ETL project in MySql
2 answers
Talend also works great for ETL and ELT. You can take a look at this page on my site: http://www.hiregion.com/2010/01/data-loading-through-talend-etl-studio.html and related articles. I also loaded hundreds of thousands of rows into millions using MySQL bulk load (LOAD DATA INFILE syntax - dev.mysql.com/doc/refman/5.1/en/load-data.html) and then did some conversions in MySQL. You can do most of the pre-load (ETL) or post-load (ELT) transformations, or use hybrid techniques.
+1
a source to share