---------------------------------------------------------------------------------------------------------- --添加用户 create user user [identified by [pas... ...
分类:
数据库 时间:
2017-07-17 17:09:24
阅读次数:
180
登录:conn 用户名/口令创建用户create user 用户名 identified by 口令修改密码password 用户名删除用户drop user 用户名如果要删除的用户已经创建表,那么再删除要带参数cascade赋予权限grant 角色 to 用户名权限:系统权限(用户对数据库的相关权 ...
分类:
数据库 时间:
2017-07-17 10:02:18
阅读次数:
178
用户管理 1、 查询用户 use user; select host,user from user; 2、 创建用户 create user hkx001 IDENTIFIED by 'hkx001'; create user hkx010@127.0.0.1 IDENTIFIED by 'hkx0 ...
分类:
数据库 时间:
2017-07-15 19:02:14
阅读次数:
235
创建用户 1 CREATE USER username identified by password;//这是最简单的用户创建SQL语句. 2 CREATE USER username identified by password default tablespace users temporary... ...
分类:
数据库 时间:
2017-07-15 18:57:44
阅读次数:
163
设置mysql密码SET PASSWORD = PASSWORD('cs@123456'); 设置mysql远程连接GRANT ALL PRIVILEGES ON *.* TO 'root'@'192.168.4.0' IDENTIFIED BY 'cs@123456' WITH GRANT OPT ...
分类:
数据库 时间:
2017-07-13 19:11:33
阅读次数:
172
1.改动password grant all privileges on *.* to 'root'@'localhost' identified by 'new password'; 2.改动port号 (1)在服务中停掉mysql的服务 (2)在mysql的安装文件夹下,找到 my.ini 文件 ...
分类:
数据库 时间:
2017-07-09 14:47:43
阅读次数:
244
1. 错误描写叙述 GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY "."; 1 queries executed, 0 success, 1 errors, 0 warnings 查询:grant all privileges on *. ...
分类:
数据库 时间:
2017-07-07 20:04:48
阅读次数:
263
--手动创建数据库 create database database_name [user sys identified by password]--设置sys用户口令 [user system idnetified by password]--设置system用户口令 [controlfile r... ...
分类:
数据库 时间:
2017-07-07 17:30:01
阅读次数:
228
运行 sqlplus /nolog在sql> connect / as sysdba连接成功后执行 sql> alter user system identified by 你要改的密码; -- 这是改密码 sql> alter user SCOTT account unlock; -- 这是解锁 ...
分类:
数据库 时间:
2017-07-06 20:49:01
阅读次数:
918
1、创建用户create user KD identified by 123456;2、授予连接数据库的权限grant connect to KD;3、将Scott用户的emp表授权给KD可以查询grant select on scott.emp to KD;grant create table t ...
分类:
数据库 时间:
2017-07-05 13:42:19
阅读次数:
201