I'm clearly doing something wrong.  All I want is to grant a user rights
to create databases:

grant create on *.* to 'user'@'localhost' identified by 'pass';

doesn't do the trick, nor does

grant super on *.* to 'user'@'localhost' identified by 'pass';

The user in question was originally created using 

grant all privileges on their_db.* to 'user'@'localhost' identified by
'pass';

If I try logging in as this user though the following happens:



mysql> create database testdb;
ERROR 1044 (42000): Access denied for user 'user'@'localhost' to
database 'testdb'

Can someone point out the error of my ways?

Many thanks, jc

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/mysql?unsub=arch...@jab.org

Reply via email to