Hello,
I need to import data from a mSQL Dump into a MySQL database. Are there programms that can convert the dump, or is there another way to do this?
thanks,
See MySQL LOAD DATA command
mysql> LOAD DATA INFILE "data.txt" INTO TABLE db2.my_table;