MySQL Forums
Forum List  »  Newbie

Re: Can't seem to create a new user account
Posted by: Vinod Sugur
Date: February 24, 2009 01:25AM

Hi David,

There has been bug raised for the same. Please see the below url for more details:

http://bugs.mysql.com/bug.php?id=28331

The possible solution for this error would be query mysql.user table and see if the user exists.

Select *
from mysql.user
where user = 'username';

second solution would be to use flush privileges; and try the statement once again.

Let me know if this helps.

Regards,
Vinod

Options: ReplyQuote


Subject
Written By
Posted
Re: Can't seem to create a new user account
February 24, 2009 01:25AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.