Migrate MySQL database to Sql Server
I recently encountered a problem in my production database due to MySQL bug. The bug is in the TimeStamp column. To avoid any inconvenience, I want to migrate the database to either Sql Server.
Is there any FREE tool 开发者_JAVA百科to easily and reliably migrate data and table structures?
http://blogs.technet.com/b/dataplatforminsider/archive/2010/01/11/free-download-microsoft-sql-server-migration-assistant.aspx
I would think twice about migrating to a new platform, before you have assessed all the pros and cons of making such a step.
For example you could ask yourself:
- What is the difference in cost between the old and the new product?
- How much work is involved in the migration (eg. do you have any SQL code that has to be rewritten in the new SQL dialect: stored functions, stored procedures, triggers and the like)
- Could I spend the same or less money/work by hiring an experienced DBA that can provide a workaround to the MySQL timestamp bug
When you have made an informed decision and you still want to migrate to a new platform, I can recommend Microsoft SQL Server. As far as I know, it is cheaper than Oracle, and it is a stable platform without any blatant bugs and a wide (if not the widest) community of users - so finding solutions to problems is easy.
And in that case, you can use the migration tool mentioned by FractalizeR.
精彩评论