How to transfer a database from MySql to MS-SQL?

I want to transfer my entire database from MySQL to the MS-Sql server.
although I am open to using any tool, I am forbidden to use only free avilable tools.

+3
source share
2 answers
+2
source

export db from MySql (mysqldump), manually edit to convert between SQL variants on two platforms, and then import into MS-SQL.

0
source

Source: https://habr.com/ru/post/1735551/


All Articles