2

Is possible to forward engineer to SQL Server from MySQL workbench?

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Matt
  • 7,022
  • 16
  • 53
  • 66

2 Answers2

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
  • 1
    Note: 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