博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
添加删除mysql用户
阅读量:6425 次
发布时间:2019-06-23

本文共 533 字,大约阅读时间需要 1 分钟。

create user 'hive_user'@'%' identified by '密码';grant all privileges on hive.* to hive_user@'%'; create user 'hive_user'@'localhost' identified by '密码';  grant all privileges on hive.* to hive_user@'localhost';

 

grant all privileges on dc_bj_data.* to dc_user@'%' identified by '123';

grant select,delete,update,create,drop on *.* to test@"%" identified by '123';

grant select on dc_bj_data.sanshengsanshi_log to test@"%" identified by '123';

Delete FROM mysql.user Where User='dc_user';

转载于:https://www.cnblogs.com/linn/p/9223046.html

你可能感兴趣的文章
【编译打包】tengine 1.5.1 SRPM
查看>>
看图说话:手动清除病毒文件流程
查看>>
一句话下拖库
查看>>
Deploy Office Communications Server 2007R2 Group Chat Server(二)
查看>>
在Cacti上实现MSN报警机制
查看>>
如何对C++虚基类构造函数
查看>>
XFire WebService开发快速起步
查看>>
JavaScript 函数replace揭秘
查看>>
QTP解决内嵌IE窗体方法2
查看>>
“王子”的演讲:N828印象
查看>>
判断JS字符串中是否包含某些字符
查看>>
Phalanger---PHP的.NET编译器
查看>>
Scanner----java控制台和文件读取的利器(java 5新增)
查看>>
如何安全设定和检测你的密码安全性?
查看>>
一例HP ADG数据恢复成功(8×73GB SCSI)
查看>>
虚拟化系列-Citrix XenServer 6.1 XenMotion与HA
查看>>
TFS创建团队项目(三)
查看>>
对发展的一点小感想
查看>>
示例化讲解RIP路由更新机制
查看>>
eclipse不能自动编译工程的解决方法
查看>>