Reputation: 1104
I have a windows server 2008 R2 x64 with mysql 5.5 x86 (not my install).
I want to upgrade to mysql 5.5 x64.
What issues will I have with everything else?
Upvotes: 1
Views: 117
Reputation: 1104
Since no one answered I though I would give my own feedback on how the upgrade went.
After the upgrade all the system DBs were reset which would be OK if they didn't have all the stored procedures, triggers and functions saved in it. Also beware that logins are also saved there!
Then I had to fetch backup data to replace that data but my mysqldump backups has 2 problems:
When doing such upgrades and for future backup knowledge here are my advices:
--routines
argument to include triggers, functions and stored procedures.Upvotes: 1