|
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?
(comments are locked)
|
|
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:
Or you can create a project in SSIS and pull data and objects across that way. Just to expand a bit on that the syntax is likely to look like: Select * into newtable from mysql_alias.mysqltable
Nov 07 '09 at 10:13 AM
Kristen ♦
(comments are locked)
|

