Currently Im running a 160G MySQL database on Xampp (Windows). But Xampp has upper limit for innodb buffer pool size of 4G. My computer has 16G RAM. So if I want to make full use of resources, should I move database from Xampp to Workbench? Then I could set maybe 10G buffer.
So, here is my plan:
- use mysqldump to create a backup file.
- uninstall Xampp totally (otherwise MySQL will install in Xampp directory again, I tried before)
- install new MySQL and workbench.
- recover the dump file into new platform
- set innodb buffer pool size to >10G.
Is this practical?