1.创建用户 dba权限才可以操作 CREATE USER username(用户名) IDENTIFIED BY password(密码) 创建了一个用户名和密码都是t1的用户 1 SQL> CREATE USER t1 IDENTIFIED BY t1; 2 3 User created. 2.
分类:
数据库 时间:
2016-02-02 17:59:54
阅读次数:
197
转自:Best Practices for Speeding Up Your Web Site Best Practices for Speeding Up Your Web Site The Exceptional Performance team has identified a number
分类:
Web程序 时间:
2016-01-31 21:23:23
阅读次数:
412
1.远程连接上Linux系统,确保Linux系统已经安装上了MySQL数据库。登陆数据库。mysql -uroot -p(密码)。 2. 创建用户用来远程连接 GRANT ALL PRIVILEGES ON *.* TO 'itoffice'@'%' IDENTIFIED BY 'itoffice'
分类:
数据库 时间:
2016-01-30 22:28:29
阅读次数:
262
MYSQL-创建数据库及用户名: mysql> create database yoon;Query OK, 1 row affected (0.00 sec) mysql> grant all privileges on yoon.* to 'yoon'@'%' identified by 'yo
分类:
数据库 时间:
2016-01-29 20:19:52
阅读次数:
169
今天登录mysql,给其它用户授权遇到问题 mysql> grant all privileges on testdb.* to 'dbuser'@'10.4.14.14' identified by '5jyeTQ';ERROR 1044 (42000): Access denied for us...
分类:
数据库 时间:
2016-01-25 21:00:36
阅读次数:
208
1、修改mysql配置文件 注释掉 #bind_address:127.0.0.12、授权账户远程连接权限 grant all priveleges on '.' To 'myuser'@'%' identified by 'mypassword' with grant option myus...
分类:
数据库 时间:
2016-01-22 10:48:40
阅读次数:
125
conn internal/oracle grant user aaaa identified by aaaa; conn aaaa/aaaa 会报错: SQL>conn aaaa/aaaa 会报错: ERROR: ORA-01045: user aaaa lacks CREATE SES...
分类:
数据库 时间:
2016-01-19 23:34:41
阅读次数:
246
数据库为MySQL数据库,Oracle数据库类似: create database db_test;--创建数据库 create user user_test@localhost identified by '123456';--创建用户 grant all privileges on db_tes...
分类:
数据库 时间:
2016-01-19 00:18:17
阅读次数:
277
grant all privileges on *.* to root@'%' identified by 'root';--把所有特权给root '%'所有IP
分类:
其他好文 时间:
2016-01-16 23:47:05
阅读次数:
181
create user 'sopr'@'%' identified by 'sopr';GRANT ALL PRIVILEGES ON *.* TO 'sopr'@'%' IDENTIFIED BY 'sopr' WITH GRANT OPTION; flush privileges;重启一下:su...
分类:
数据库 时间:
2016-01-16 18:59:58
阅读次数:
184