日期:2014-05-16  浏览次数:20928 次

MySQl 5.0 如何 grant super 权限给用户呢?

MySQl   5.0   如何   grant   super   权限给用户呢?   执行以下总是不行.  

mysql>   GRANT   super   ON   test.*   TO   user01@localhost;

ERROR   1221   (HY000):   Incorrect   usage   of   DB   GRANT   and   GLOBAL   PRIVILEGES



------解决方案--------------------
Hi

grant all provileges on test.* to user01@localhost identified by 'password ';
flush privileges;

from Peter (www.kingofcoder.com编程王站站长)
------解决方案--------------------
楼上正解