Tuesday, 20 March 2012

Installing MySQL Server

Download MySQL from MySQL community web site: http://dev.mysql.com/downloads/installer/ MySQL Installer provides an easy to use, wizard-based installation experience for all your MySQL software needs. It includes:
  • MySQL Server
  • All of our support connectors
  • Workbench and sample models
  • Sample databases
  • Documentation 
In some cases, if MySQL Server failed during installation, it might displays the message "cannot connect to local host". In this case, it is recommended to remove all the unnecessary software (such as HP help assistance and so on). 
 
 

No comments:

SQL: Generate a range of numbers

SELECT ones.n + 10*tens.n + 100*hundreds.n + 1000*thousands.n FROM       (VALUES(0),(1),(2),(3),(4),(5),(6),(7),(8),(9)) ones(n),      (VALU...