码迷,mamicode.com
首页 >  
搜索关键字:identified    ( 1345个结果
mysql--用户管理
1.用户定义-用户构成 2.用户作用 3.创建用户 6.用户 7.删除用户 --创建准系统超级管理员 grant all on *.* to 'sys'@'localhost' identified by '123' 8.找回密码 --skip-grant-talbes 启动跳过授权表 --skip ...
分类:数据库   时间:2017-12-27 20:25:24    阅读次数:221
[oracle]常用SQL汇总
创建用户 create user 用户名 identified by 密码 default tablespace 默认表空间 temporary tablespace 临时表空间; 查看表空间大小 select tablespace_name, sum(bytes)/1024/1024 from d ...
分类:数据库   时间:2017-12-27 15:40:02    阅读次数:163
bzoj3048[Usaco2013 Jan]Cow Lineup 尺取法
3048: [Usaco2013 Jan]Cow Lineup Description Farmer John's N cows (1 <= N <= 100,000) are lined up in a row. Each cow is identified by an integer "bree ...
分类:其他好文   时间:2017-12-25 23:23:31    阅读次数:227
mysql主从
开启两台mysql log-bin.logserver_id不能相同 设置从服务器server_id=2; 主服务器建立一个主从账号 GRANT REPLICATION SLAVE ON *.* TO 'slave'@'%' IDENTIFIED BY '1234'; 查看主服务器信息(主要是fil ...
分类:数据库   时间:2017-12-20 13:59:04    阅读次数:246
Ubuntu17安装MySql5.7
安装: 配置远程访问: vi /etc/mysql/mysql.conf.d/mysqld.conf 注释掉: #bind-address 127.0.0.1 mysql -u root -p grant all privileges on *.* to 'root'@'%' identified ...
分类:数据库   时间:2017-12-17 17:01:23    阅读次数:160
oracle用户权限
当我们的oracle11g安装完之后,需要创建用户,并赋予普通权限,怎么做? 1、安装完后,会有一个系统密码,假设为root 2、sqlplus-->> username:system password:root 3、create user tp identified by tp; 4、grant ...
分类:数据库   时间:2017-12-16 20:28:46    阅读次数:173
忘记SYS密码
进入控制台录入 sqlplus /nolog; connect / as sysdba alter user sys identified by ; alter user system identified by ; ...
分类:其他好文   时间:2017-12-15 23:33:15    阅读次数:166
Mysql 数据库操作
用户管理: 1.新建用户: >create user name identified by 'redPen'; 2.更改密码: >set password for name=password('ddd'); 3.权限管理: >show grants for username; // 查看name用户 ...
分类:数据库   时间:2017-12-14 14:48:45    阅读次数:175
mysql备份
mysql备份1、添加mysql备份用户GRANT SELECT, RELOAD, SUPER, REPLICATION CLIENT ON *.* TO ‘dump‘@‘localhost‘ IDENTIFIED BY PASSWORD ‘123456‘;2、配置文件添加mysqldump字段[mysqldump]socket=/data/mysq
分类:数据库   时间:2017-12-13 23:18:28    阅读次数:166
DCL
管理系统中的对象权限时使用 ①创建用户 create user 'username'@'localhost' identified by 'password'; create user 'my_user'@'localhost' identified by 'cqq'; 本地用户:‘localhos ...
分类:其他好文   时间:2017-12-12 20:45:55    阅读次数:164
1345条   上一页 1 ... 45 46 47 48 49 ... 135 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!