Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've created database, for example 'mydb'.

CREATE DATABASE mydb CHARACTER SET utf8 COLLATE utf8_bin;
CREATE USER 'myuser'@'%' IDENTIFIED BY PASSWORD '*HASH';
GRANT ALL ON mydb.* TO 'myuser'@'%';
GRANT ALL ON mydb TO 'myuser'@'%';
GRANT CREATE ON mydb TO 'myuser'@'%';
FLUSH PRIVILEGES;

Now i can login to database from everywhere, but can't create tables.

How to grant all privileges on that database and (in the future) tables. I can't create tables in 'mydb' database. I always get:

CREATE TABLE t (c CHAR(20) CHARACTER SET utf8 COLLATE utf8_bin);
ERROR 1142 (42000): CREATE command denied to user 'myuser'@'...' for table 't'
share|improve this question
4  
What do you get when you SHOW GRANTS FOR CURRENT_USER; – diagonalbatman Feb 16 '11 at 12:40
1  
Sorry for my question. I had typo in database name. Question to remove. – marioosh Feb 16 '11 at 12:45
1  
Have you tried running FLUSH PRIVILEGES ? – Romain Feb 16 '11 at 12:45
@romain - did you read his code example? – diagonalbatman Feb 16 '11 at 12:47
1  
@Andy Thanks for "SHOW GRANTS FOR CURRENT_USER;" - that helps me see my typo. – marioosh Feb 16 '11 at 12:56

3 Answers

up vote 83 down vote accepted
GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%' WITH GRANT OPTION;

This is how I create my "Super User" privileges (although I would normally specify a host).

share|improve this answer
18  
@Romain you are not really bringing alot to the table here - i don't name my users myuser - the questioner was simply using a username as an example - i used the same example username for consistency. – diagonalbatman Feb 16 '11 at 13:44
4  
Fair enough. But one has to also think about the other people, possibly newbies, that could come read this question later on. Isn't it the point of SO as well? – Romain Feb 18 '11 at 13:46

This is old question but I don't think the accepted answer is safe. It's good for creating a super user but not good if you want to grant privileges on a single database.

grant all privileges on mydb.* to myuser@'%' identified by 'mypasswd';
grant all privileges on mydb.* to myuser@localhost identified by 'mypasswd';

% seems to not cover socket communications, that is the localhost for. WITH GRANT OPTION is only good for the super user, otherwise it is usually a security risk.

Hope this helps.

share|improve this answer

This will work..

GRANT ALL PRIVILEGES ON *.* TO 'username'@'%' WITH GRANT OPTION; 

And the grant syntax is clearly explained here But i normally use SQLyog for this which has an option for adding, editing, deleting users and managing privileges on the selected databases, tables and other database objects.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.