We have a live MySQL server at the company where everything comes together. It was created around 1998 and has been running continuously ever since.
The MySQL version is 3.51.
WinMySQL version 1.4 from 2001.
I was just born at the time….
I need a secure way to migrate the data to a newer version, as I can’t access this database with any current software.
mysqld-max-nt.exe is the name of the service.
Only the 2001 version of WinMySQLAdmin still works.I did find a way to create a DB dump at some point, but it could not be read by any version of MySQL.
I need a way where I can upgrade to MySQL 8.0 without data loss.
2
Answers
My suggestion is to export the data to excel or csv or txt format, not sql format, because mysql 3 is too old and many data types have changed, which is why the current version can’t read this file format.
Then create a new table (new data type) in mysql, and then import the data.