I have a mysql database.I would like to transfer all data to a new database in MS-SQL. Can you give me information about how to do this?
I have a mysql database.I would like to transfer all data to a new database in MS-SQL. Can you give me information about how to do this?
First, set up a linked server.
http://forums.mysql.com/read.php?60,123221,123221#msg-123221
Once this has been completed, you can simply eith do:
Select * into <newtable> from <mysqltable>
Or you can create a project in SSIS and pull data and objects across that way.
No one has followed this question yet.