I have 2 databases: MySQL and MsSQL. Inside of MySQL I have a lot of data, but I need to migrate this data to MsSQL. I tried to do this migration with
mysqldump -u root -p --compatible=mssql --database my_db > dump.sql
Then I faced an issue: Invalid mode to --compatible: mssql
How can I do the migration between MySQL and SQL server 2008?
UPDATE
As the result of the discussion I need to migrate just data from MySQL to the SQL server, because I already have db inside SQL server. Any ideas how to extract data and insert it to the SQL server?