码迷,mamicode.com
首页 >  
搜索关键字:identified    ( 1345个结果
oracle:db-link使用
二个oracle instance,如果需要在一个instance上,直接查询另一个instance上的数据,就要用到db-link创建:create public database link 链接名 connect to 用户名 identified by 密码 using '(DESCRIP.....
分类:数据库   时间:2014-11-03 16:03:42    阅读次数:160
spring mvc 4.1 返回json报406错误的解决办法
spring mvc 4.1 返回json报406错误的解决办法 浏览器访问,报 The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the reque...
分类:编程语言   时间:2014-11-01 23:21:07    阅读次数:396
[Oracle]创建用户
(1) 创建表空间create tablespace 空间名datafile 'E:\文件名.dat'size 1Mautoextend on(2) 创建用户-- 不用的--create user 用户名 identified by 密码;--grant connect,resource to 用户...
分类:数据库   时间:2014-11-01 09:41:42    阅读次数:189
MySQL数据库操作1-账户
添加账户:代码:(需要已经使用root登陆了MySQL)grant 权限 on 数据库.* to 用户名@登录主机 identified by 密码;注意:1.数据库后面必须是.*,2.权限分为select insert update delete等,3.用户名和登陆均主机需用引号引起,主机名%默认...
分类:数据库   时间:2014-11-01 01:00:49    阅读次数:299
Oracle建立表空间和用户
Oracle建立表空间和用户 建立表空间和用户的步骤:用户建立:create user username identified by "password";授权:grant create session to username; grant create tabl...
分类:数据库   时间:2014-10-31 17:16:20    阅读次数:188
mysql用户权限分配及主从同步复制
赋予wgdp用户查询权限: grant select on wg_dp.* to 'wgdp'@'%' IDENTIFIED BY 'weigou123'; grant all privileges on *.* to 'yangchao'@'%' IDENTIFIED BY 'weigou123' 查询mysql其他用户权限: show grants for wgdp...
分类:数据库   时间:2014-10-29 21:35:24    阅读次数:220
Zabbix客户端日志出现(Not all processes could be identified, 解决
场景:因为使用了netstat-p参数。权限问题,zabbix_agentd是zabbix用户启动的,默认不能执行netstat-p等命令,导致从服务器取到的自动发现脚本为空(Notallprocessescouldbeidentified,non-ownedprocessinfowillnotbeshown,youwouldhavetoberoottoseeitall.)解决方法:chmod+s/b..
分类:其他好文   时间:2014-10-28 18:06:10    阅读次数:626
MYSQL添加远程用户或允许远程访问三种方法
添加远程用户admin密码为password GRANT ALL PRIVILEGES ON *.* TO admin@localhost IDENTIFIED BY \'password\' WITH GRANT OPTION GRANT ALL PRIVILEGES ON *.* TO admin@\"%\" IDENTIFIED BY \'password\' WITH GRANT OPTI...
分类:数据库   时间:2014-10-23 16:27:21    阅读次数:195
Oracle 常用语法
--创建表空间create tablespace myschooldatafile 'D:/ms.dbf'size 50M--创建用户create user t87 identified by t87;--授予权限(dba,connect,resource)grant connect,resourc...
分类:数据库   时间:2014-10-17 23:10:57    阅读次数:358
Linking code for an enhanced application binary interface (ABI) with decode time instruction optimization
A code sequence made up multiple instructions and specifying an offset from a base address is identified in an object file. The offset from the base a...
分类:移动开发   时间:2014-10-17 03:16:23    阅读次数:268
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!