码迷,mamicode.com
首页 >  
搜索关键字:ora-01031: insufficient privileges    ( 702个结果
mysql创建用户
use mysql; create user 'usrabc'@'%' identified by 'usrabc'; // %表示任何一个ip都可以登陆grant all privileges on *.* to root@'%' identified by '你为root设置好的密码'; flu... ...
分类:数据库   时间:2019-04-15 00:33:21    阅读次数:183
1698 -Access denied for user 'root@xxxx'
grant all privileges on *.* to user@'localhost' Identified by 'password' WITH GRANT OPTION; grant all privileges on *.* to root@'%' Identified by 'pas ...
分类:数据库   时间:2019-04-05 11:55:28    阅读次数:181
MySQL常用命令
##Mysql添加用户名和密码 grant all privileges on dbname.* to dbusername@'192.168.16.xx' identified by 'dbpwd'; ##Mysqldump备份数据库结构 mysqldump -h 192.168.16.16 -u ...
分类:数据库   时间:2019-04-03 09:29:02    阅读次数:193
hive采坑
上面是问题,下面是相应的解决方法,很明显是mysql访问出现问题: grant all privileges on *.* to 'root' @'centos35' identified by '123456' ...
分类:其他好文   时间:2019-03-25 16:05:11    阅读次数:112
mysql常用的用户授权语句
一:授权主要的 SQL //某个数据库所有的权限 ALL 后面+ PRIVILEGES GRANT ALL PRIVILEGES ON 库名.* TO '用户'@'%' IDENTIFIED BY '密码'; // *代表所有表, %代表所有IP //某个数据库 特定的权限 权限后面没有 PRIVI ...
分类:数据库   时间:2019-03-13 12:05:36    阅读次数:375
解决Navicat远程连接mysql很慢的方法
ubuntu 下 /etc/mysql/mysql.conf.d [mysqld]skip-name-resolve 增加该字段即可 如果增加该字段,这无法使用本地ip进行登入, 登陆到MySql服务器,执行下面的语句为所有ip赋予权限。 grant all privileges on *.* to ...
分类:数据库   时间:2019-03-06 13:27:24    阅读次数:776
navicat连接mysql出现Client does not support authentication protocol requested by server解决方案
USE mysql; ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '831015'; FLUSH PRIVILEGES; root是用户名 localhost是ip地址127.0.0.1都是特指本机,%... ...
分类:数据库   时间:2019-03-06 10:40:02    阅读次数:189
Navicat连接Docker中的mysql报错:client does not support authentication
1.进入mysql容器中 docker exec -it mysqltest(mysql容器名称) bash 2.进入mysql数据库 mysql -uroot -p 3.输入mysql密码 4.远程连接授权 mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@ ...
分类:数据库   时间:2019-03-04 19:14:52    阅读次数:560
【Oracle 12c】最新CUUG OCP-071考试题库(55题)
55、(13-3) choose the best answer: Which statement is true regarding the SESSION_PRIVS dictionary view? A) It contains the object privileges granted to ...
分类:数据库   时间:2019-03-04 14:29:52    阅读次数:187
mysql 重置密码
SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass'); FLUSH PRIVILEGES; grant all privileges on *.* to 'root'@'%' identified by '123456'; ...
分类:数据库   时间:2019-03-01 18:22:53    阅读次数:179
702条   上一页 1 ... 12 13 14 15 16 ... 71 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!