Hi,
I'm converting data from an existing DBF to MySQL. I have tables with more than 2.000.000 records.
Now I'm going to the top of the DBF, and with an Do While !eof() I skip to the dbf and insert each record in the SQL.
It is very slow (more than 2 hours in some cases).
Is there a faster way to do this?
In SQLite I use 'Begin immediate' and 'Commit' before the loop, what resulted in a faster execution, but it doesn't work in MySQL.
Also using 'Start stransaction' and 'commit' doesn't help.
Thanks
Marc