View Single Post
  #5  
Old 10-09-2005, 01:10 AM
jimm0thy
Sarnak
 
Join Date: Jul 2002
Posts: 71
Default

The *.* will grant root privilages to all databases , instead of identifying one.

Also please remember that when it says to input

GRANT ALL PRIVILEGES ON *.* TO Username@localhost IDENTIFIED BY 'Password' WITH GRANT OPTION;

That you have to replace Username with your username , and password with your password. So basically it would look like ..

GRANT ALL PRIVILEGES ON *.* TO Bob@localhost IDENTIFIED BY 'Smith123' WITH GRANT OPTION;
Reply With Quote