Mysql大数据库迁移

Hi I'm building a enterprise management system (php based) for a medium size company. I'm trying to migrate their existing customer records about (9000 records) into my db. Our db schemas are different.

Here are the steps I'm planning to take:

1.) Get the .csv file for each table and clean it up (get rid of unnecessary columns, remove blanks rows which seem to be littered throughout table)

2.) Import the tables into my database via phpmyadmin

3.) Write a php script to loop grab tables with this old data and then process and insert them into MY db tables

I was wondering if this plan I outlined above make sense or is the optimal way to do it?

Thanks

There is an data migration is possible in MySQL Workbench 6.0. I have migrated more than millions of record so this is not big deal.

Try http://www.mysql.com/products/workbench/migrate/

enter image description here