SQL Server Migration Tool in MYSQL

I want to migrate a SQL Server database to MYSQL. Is there open or free software for this?

+4
source share
2 answers

sorry for the late reply. just saw your post. what can you do,

dump sql file from a table in MSSQL and use this file to import data into a MySQL table. you can use navicat for this (import into mySQL).

0
source

There is a MySQL Migration Toolkit that is part of the MySQL GUI tools available in

http://dev.mysql.com/downloads/gui-tools/5.0.html

It requires some configuration to work, it is a pain, but it does its job.

0
source

All Articles