I have a small website that I've built for my wife who is a
realtor. It's a simple site that tracks properties,
showings, etc and it was built using ASP.Net and Sql
Server. Recently I decided to move it to Connector/Net and
MySQL 5.1 so I needed a way to migrate the data. Enter the
MySQL Migration Toolkit.
This is a terrific tool that can migrate data from various
databases into MySQL. My SQL Server instance was setup to
support mixed mode authentication and I had enabled the SQL
Server Browser service and the TCP/IP protocol so I didn't
anticipate any problems. I was almost right.
The one thing that tripped me up was that I was using a named
instance with SQL Server. My instance was named SQLExpress
so the hostname of the instance was .\SQLExpress. The
problem is that the JDBC driver that the toolkit uses doesn't
accept that as a hostname. To get it to work you have to
enter a …
[Read more]