码迷,mamicode.com
首页 >  
搜索关键字:identified    ( 1345个结果
mysql 授权
mysql 只允许127.0.0.1 后,在增加hostname登陆本机mysql> grant all privileges on *.* to iau_job@test250 identified by '210ADC';mysql> flush privileges;mysql> select ...
分类:数据库   时间:2018-07-09 16:34:42    阅读次数:225
oracle 中的角色
conn sys as sysdba;create role testrole;grant create session, create table, unlimited tablespace to testrole;create user test identified by test;grant ...
分类:数据库   时间:2018-07-07 00:30:12    阅读次数:192
oracle 对象权限
drop user test cascade;create user test identified by test;grant create session to test;grant create any table to test;conn test/test;create table sco ...
分类:数据库   时间:2018-07-06 23:23:11    阅读次数:200
oracle 用户系统权限
create user test identified by test; grant create session to test; grant create table to test; 这个时候还没有使用表空间的权限,还不可以建表grant unlimited tablespace to tes ...
分类:数据库   时间:2018-07-06 21:37:03    阅读次数:202
Mysql忘记密码解决方法
方法1: 1.停止MySQL服务 # kill `cat /var/run/mysqld/mysqld.pid` 或者 # pkill mysqld 2.创建一个密码赋值语句的文本文件 # vi mysql-init ALTER USER 'root'@'localhost' IDENTIFIED ...
分类:数据库   时间:2018-07-05 19:47:59    阅读次数:215
mysql创建用户分配权限
version:6.7.6+ 1、创建用户: create user username identified by 'myPassword'; 或 create user 'test'@'127.0.0.1' ; 2、修改密码: alter user test identified by 'test ...
分类:数据库   时间:2018-07-02 19:23:08    阅读次数:190
mysql创建用户和管理用户权限
一、创建用户: mysql>create user 'username'@'host' identified by 'password'; username 创建的用户名 host 指定该用户在哪个主机上可以登录,如果是本地用户可用localhost,如果想让该用户可以从任意远程主机登录,可以使用通 ...
分类:数据库   时间:2018-06-29 13:58:52    阅读次数:179
mysql 用户创建,修改和忘记root密码的操作
#创建用户CREATE USER 'zzq'@'localhost' IDENTIFIED by 'zzq';#flush privileges 命令本质上的作用是将当前user和privilige表中的用户信息/权限设置从mysql库(MySQL数据库的内置库)中提取到内存里。#MySQL用户数据 ...
分类:数据库   时间:2018-06-27 13:55:25    阅读次数:188
mysql权限管理
权限管理(root) 1、创建账号 # 本地账号 create user'egon1'@'localhost' identified by '123'; # mysql -uegon1 -p123 # 远程账号,客户端ip(192.168.31.10) create user'egon1'@'192 ...
分类:数据库   时间:2018-06-24 11:30:52    阅读次数:163
2018-6-20
13.4 mysql用户管理13.5 常用sql语句13.6 mysql数据库备份恢复13.4 mysql用户管理主要是设置用户对哪个的权限grant all on *.* to ‘user1‘@‘127.0.0.1‘ identified by ‘123456a‘;? //grant all 授权操作,这个用户只能通过127来登陆mysq
分类:其他好文   时间:2018-06-21 11:45:52    阅读次数:231
1345条   上一页 1 ... 35 36 37 38 39 ... 135 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!