View Single Post
  #2  
Old 06-21-2008, 12:22 AM
Andrew80k
Dragon
 
Join Date: Feb 2007
Posts: 659
Default

You need to use old password type.

Code:
mysql> UPDATE mysql.user SET Password = OLD_PASSWORD('newpwd')
    -> WHERE Host = 'some_host' AND User = 'some_user';
mysql> FLUSH PRIVILEGES;
Reply With Quote