I found out mysql update records very slow.
I have a logic whereby, if the records exist then, it will update, else it will insert. but the total record for source database having 14k rows, and it only successfully inserted each row in few sec, therefore, it is very slow, how can i make it 1 minutes to insert 14k rows? by the way, i'm using c#
foreach (row in rows)
checkrecords(row); // if exist update, else create.
Regards, MH