MySQL 64 bits? Stand alone?
To extent my understanding on MySQL.
1) Is going for 64bit help? Do I go with installation or stand alone?
2) If I am going to use 64-bit in MySQL Community Service, will it affect the MySQL Workbench which only available in 32-bit? If yes, in what sense?
3) Does the size of the file affect the speed of MySQL when doing calculation, analysis, and graph? I get a lot of big trouble using Excel in big size.
Please guide.
Note: I am working on excel database (which I found out on this website that it is not a good wa开发者_运维百科y to do it) with size of 1.34GB 63 files and growing. I would like to change and continue working in MySQL. I need the database for calculation, analysis and graph.
You are confusing a few concepts. But let me first answer your questions.
1/ 64-bit is more powerful than 32-bit, if your server supports 64-bit. So yes, it should "help".
2/ You can use a 64-bit server with a 32-bit client without any problems. They just communicate with eachother using MySQL-statements, bitsize makes no difference there.
3/ The size of the file (table/row/...) does matter. A lot of small tables can outperform one big table in certain cases, especially with multicore/raid/...
精彩评论