Page 1 of 1
Utility for converting from MSSQL to MYSQL
Posted: 2016-10-14 13:44
by kingtbala
We were trying to import data base structure from our windows server MSSQL but we had problem in importing with various errors.
we have seen there is also utility built in to import in csv and mysql format, is it possible to add mssql also.
or
is there any other utility which can do this ?
appreciate help
Re: Utility for converting from MSSQL to MYSQL
Posted: 2016-10-18 13:44
by Noha Eshra
You can export your data from MSSQL as csv and then you can use this csv once to build the table structure and then to import the data after generating the application.
For more information please follow this screenscast
http://bigprof.com/appgini/screencasts/ ... pplication
Re: Utility for converting from MSSQL to MYSQL
Posted: 2016-10-18 14:37
by DevGiu
Noha Eshra wrote:You can export your data from MSSQL as csv and then you can use this csv once to build the table structure and then to import the data after generating the application.
For more information please follow this screenscast
http://bigprof.com/appgini/screencasts/ ... pplication
The problem of this way is that, AFAIR, CSV creation of data structure, last time I tested it, create all fields as varchars, and don't detects length and so on. Maybe I'm wrong, I didn't need it yet, but my last test was this way.
Re: Utility for converting from MSSQL to MYSQL
Posted: 2016-10-19 00:19
by grimblefritz
Re: Utility for converting from MSSQL to MYSQL
Posted: 2016-10-19 12:06
by Noha Eshra
DevGiu wrote:
The problem of this way is that, AFAIR, CSV creation of data structure, last time I tested it, create all fields as varchars, and don't detects length and so on. Maybe I'm wrong, I didn't need it yet, but my last test was this way.
The problem is that the CSV file does not contain information about field type or lengths. And Therefore you have to configure them manually in AppGini.