MySQL Install
Migrating simple MySQL data (ie English)
Submitted by chris on February 19, 2008 - 04:15. MySQL InstallMigrating simple Mysql data (ie English) from 4.0.x to 4.1.x.
MySQL 4.0 to 4.1 upgrade
Submitted by chris on December 8, 2006 - 01:03. MySQL InstallUpgrade MySQL 4.0.x to 4.1.x
In my case I will be upgrading from 4.0.27. As a general rule, MySQL recommends that when upgrading from one release series to another, you should go to the next series rather than skipping a series. For example, if you currently are running MySQL 3.23 and wish to upgrade to a newer series, upgrade to MySQL 4.0 rather than to 4.1 or 5.0.
- Before upgrading you might want to test (for a few days?), see: MySQL 4.0 to 4.1 Upgrade Testing Mode
- Also read: Notable Change in MySQL 4.1
Install MySQL 4.1.x
Submitted by chris on December 2, 2006 - 20:28. MySQL Install1) Choose an installation package and Download it.
2) I picked the "Essentials Package".
See
Using the MySQL Installation Wizard
Install MySQL as a Service
Submitted by chris on March 29, 2006 - 05:15. MySQL InstallFirst make sure MySQL is not running (with for example the command: C:\mysql\bin\mysqladmin -u root -ppassword shutdown).
Install mysqld server with the default service name MySQL: c:\mysql\bin\mysqld --install
As of 4.0.2, you can also add a service name, like: c:\mysql\bin\mysqld --install MySQL4026
As of MySQL 4.0.3, if a service name is given, you can also specific the
location of the option file with:
c:\mysql\bin\mysqld --install MySQL4026--defaults-file=c:\mysql\my.ini
MySQL 4.0 to 4.1 Upgrade Testing Mode
Submitted by chris on December 2, 2006 - 17:26. MySQL InstallSeveral visible behaviors have changed between MySQL 4.0 and MySQL 4.1 to fix some critical bugs and make MySQL more compatible with standard SQL. These changes may affect your applications.
Some of the 4.1 behaviors can be tested in 4.0 before performing a full upgrade to 4.1. This gives you the 4.1 behavior for the most critical changes. That way you can test the most new behaviors in 4.0 to make sure that your applications work with them. This helps you have a smoother transition when you perform a full upgrade to 4.1 later.

