InterviewSolution
Saved Bookmarks
| 1. |
Which upgrade involves shutting down the old MySQL version and replacing the old binaries?(a) inplace(b) logical(c) illogical(d) system |
|
Answer» The correct choice is (a) inplace To explain I would say: The logical upgrade involves exporting existing data from the old MySQL version using mysqldump, installing the new MySQL version, loading the dump file into the new MySQL version. |
|