Originally posted by grifterone
We currently have an old Informix dB on an aging UNIX SCO box. I want to take that data in import it to MySQL so I can create a web interface to access the data from a newer server. Has anyone had any experience doing something similar to this? How should I approach this? Any recommendations would be greatly appreciated!
Thanks!!!
-Eric
Dear Eric,
Not sure which version of informix you have, but with informix SE 7.2x that I am using on SCO 3.2v5.0.4 I can export data in any table to text file and then import the text file to mysql server.
please try process below:
1- use dbaccess to export data to text file (use unload to statement, not output to)
2- use ftp software to transfer the exported text file to the machine that run mysql server
3- on msql database, create tables with the same columns as those of informix server
4- either using mysqlfront utility or command line of mysql to import the text file into those tables
5- DONE
I have done this many time since I am using informix on sco server and 2 mysql servers, one run on a windows machine, one on sco unix machine. Both run very OK.
Let me know if you could do
qha_vn