I have a MS SQL database, that i want to copy to a mysql database, its a very large database, with a table having about 2 million rows, Currenlty i am copying it using code in C#, that uses datareader to loop through all rows in SQL table and inserts in a mysql table, but this is taking very long time, is there any other alternative to copy database, ? both databases mysql and ms sql have same tables structure.
Please advice, Thanks