How can I copy all the records from a table in a MySql database to another table in a SQL-SERVER 2008 database?
I have tons of records in that mysql table and I’m trying to “migrate” the data.
I tried using the “MS SQL Server Migration Assistant for Mysql”, but it only migrated the structure (table names, indices, etc..).
How can I copy all the records from a table in a MySql database
Share
I would look into SQL Server Integration Services (SSIS) Packages connecting to mysql here
I would also see if OPENROWSET() is something that would work for you