Convert MSSQL database to MySQL database
Database
4
Posts
4
Posters
0
Views
1
Watching
-
I would start by going to Google and typing "convert mssql to mysql". That gives over 2 million hits. At least one of them must be useful.
-
-
Convertion of MSSQL database to MySQL database can mean a lot of things. Migration of Tables and Data. Migration of stored proc, triggers etc. Doing the first one is relatively easy and less labour intensive and can be done in a lot of ways. One example would be first to generate the create table scripts and edit them to suit MySQL. Execute these to create the tables in MySQL. Export the data from MSSQL to MySQL. Lastly apply the foreign keys. For each of these steps, there are tools available. The below mentioned link may help you. http://kofler.info/english/mssql2mysql/[^] -- obhijitghosh