05 2016 档案

摘要:并发性是oltp数据库最重要的特性,但并发涉及到资源的获取、共享与锁定。On-Line Transaction Processing联机事务处理过程(OLTP) 简介:最大优点是可以即时地处理输入的数据,及时地回答。也称为实时系统(Real time System)。 OLTP是由前台、应用、数据库 阅读全文
posted @ 2016-05-26 10:05 Dlimeng 阅读(10) 评论(0) 推荐(0)
摘要:并发性是oltp数据库最重要的特性,但并发涉及到资源的获取、共享与锁定。 On-Line Transaction Processing联机事务处理过程(OLTP) 简介:最大优点是可以即时地处理输入的数据,及时地回答。也称为实时系统(Real time System)。 OLTP是由前台、应用、数据 阅读全文
posted @ 2016-05-26 10:05 Dlimeng 阅读(10) 评论(0) 推荐(0)
摘要:以scott用户下的表emp为例 where 查询emp表的不重复的工作 select distinct job from emp 查询工资不等于1500的员工【!=或<>】 select * from emp where sal <> 1500 查询薪水在1300到1600之间的员工,包括1300 阅读全文
posted @ 2016-05-24 17:42 Dlimeng 阅读(6) 评论(0) 推荐(0)
摘要:以scott用户下的表emp为例 where 查询emp表的不重复的工作 select distinct job from emp 查询工资不等于1500的员工【!=或<>】 select * from emp where sal <> 1500 查询薪水在1300到1600之间的员工,包括1300 阅读全文
posted @ 2016-05-24 17:42 Dlimeng 阅读(7) 评论(0) 推荐(0)
摘要://创建集群节点集合 Set nodes=new HashSet<>(); nodes.add(new HostAndPort("192.168.193.129", 7001)); nodes.add(new HostAndPort("192.168.193.129", 7002)); nodes. 阅读全文
posted @ 2016-05-21 19:43 Dlimeng 阅读(16) 评论(0) 推荐(0)
摘要://创建集群节点集合 Set nodes=new HashSet<>(); nodes.add(new HostAndPort("192.168.193.129", 7001)); nodes.add(new HostAndPort("192.168.193.129", 7002)); nodes. 阅读全文
posted @ 2016-05-21 19:43 Dlimeng 阅读(10) 评论(0) 推荐(0)