Don't ask me how I did this, but just tell me how to fix it..:D
I managed to make a user to a database the doesn't exists. How do I delete that user, so I can make a new one with the same name, for the right database?
ØØ
Printable View
Don't ask me how I did this, but just tell me how to fix it..:D
I managed to make a user to a database the doesn't exists. How do I delete that user, so I can make a new one with the same name, for the right database?
ØØ
Ohhh...I managed to make it work. As a not to others that is just as dumb as me:
Quote:
mysql> use mysql;
mysql> delete from user where user='username';
mysql> FLUSH PRIVILEGES;
ØØ