Is possible to forward engineer to SQL Server from MySQL workbench?
Asked
Active
Viewed 2,180 times
2
2 Answers
2
In 2010, when the question was asked, the answer was:
Not in a straightforward way. You'd need to create a MySQL schema, then use some tool to convert it to MSSQL one.
However in 2014 Philip Olson added this comment below:
[...]MySQL Workbench added a Microsoft SQL Server to MySQL migration wizard. You could use it to migrate to MySQL and then execute the forward engineer wizard.
I believe this is the correct answer currently.

Mchl
- 61,444
- 9
- 118
- 120
-
Thanks, it looks like this is going to be the only solution. – Matt Aug 04 '10 at 18:58
-
1Note: After this question was asked, MySQL Workbench added a Microsoft SQL Server to MySQL migration wizard. You could use it to migrate to MySQL and then execute the forward engineer wizard. – Philip Olson Oct 23 '14 at 17:57
0
Choose forward engineer from the database menu, copy the SQL script it shows you, modify it to make it MSSQL compatible and run it on your MSSQL server.

ROLO
- 4,183
- 25
- 41