码迷,mamicode.com
首页 >  
搜索关键字:identified    ( 1345个结果
mysql创建用户
mysql创建用户 学习了:https://blog.csdn.net/leili0806/article/details/8573636 create user 'root'@'127.0.0.1' identified by 'root'; grant all privileges on *.* ...
分类:数据库   时间:2018-06-06 12:28:34    阅读次数:150
oracle建立查询用户
使用dba用户授权: create user userName identified by password; grant connect to userName; Grant Delete, Insert, Update, Select On schema1.table1 To schema2; ...
分类:数据库   时间:2018-06-06 10:51:42    阅读次数:147
mysql 主从复制
第一步先设置主人: 设置允许访问的主ip的用户 跟ip CREATE USER 'repl'@'35.198.196.205' IDENTIFIED BY 'slavepass'; #创建用户GRANT REPLICATION SLAVE ON *.* TO 'repl'@'35.198.196.2 ...
分类:数据库   时间:2018-06-02 19:04:47    阅读次数:229
Navicat远程连接Ubuntu数据库
今天写python连接数据库的脚本,想先使用Navicat连接一下ubuntu上面的数据库,没想到提示连接失败,按下面的方法解决了问题。 1、 使用命令登录mysql -u root -p 并运行grant all privileges on *.* to root@"%" identified b ...
分类:数据库   时间:2018-05-28 22:41:19    阅读次数:215
前端控制台返回406错误解决方法
问题描述: 406 Not Acceptable,message:description The resource identified by this request is only capable of generating responses with characteristics not ...
分类:其他好文   时间:2018-05-27 19:37:33    阅读次数:187
Oracle Database Link 连接数据库复制数据
--1. 创建dblink连接 create database link mdm66 connect to lc019999 identified by aaaaaa using '10.24.12.66/orcl'; --mdm66为连接名称,可自己命名,lc019999为访问数据库用户名,aaa ...
分类:数据库   时间:2018-05-25 13:20:52    阅读次数:239
test
MySQL-用户管理 MariaDB [(none)]> select Host,User,Password from mysql.user; #查询数据库用户 MariaDB [(none)]> create user "用户名"@"授权方式" identified by "密码"; #创建用户 ...
分类:其他好文   时间:2018-05-21 21:52:50    阅读次数:116
oracle-02 用户管理
一、创建用户概述:在oracle中要创建一个新的用户使用create user语句,一般是具有dba(数据库管理员)的权限才能使用。create user 用户名 identified by 密码; 注意:oracle有个毛病,密码必须以字母开头,如果以数字开头,它不会创建用户eg、create u ...
分类:数据库   时间:2018-05-15 14:03:07    阅读次数:200
复习&mysql
一、复习详尽如下:创建一个test库create database test;授权一个用户grant all privileges on *.* to 'xiang'@'%' identified by '1qaz@WSX';创建表create table student(id int not nu ...
分类:数据库   时间:2018-05-15 00:18:17    阅读次数:236
mysql相关复习
一、相关复习 1、常用sql操作 创建一个test库:create database test;授权一个用户:grant all privileges on *.* to 'user'@'%' identified by 'password';创建表:create table student(id ...
分类:数据库   时间:2018-05-14 13:47:20    阅读次数:177
1345条   上一页 1 ... 37 38 39 40 41 ... 135 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!