摘要: 1 引言 Oracle官方网: http://www.stanford.edu/dept/itss/docs/oracle/10g/server.101/b10727/strmover.htm Oracle Stream功能是为提高数据库的高可用性而设计的,在Oracle 9i及之前的版本这个功能被称为Advance Replication。Oracle Stream利用高级... 阅读全文
posted @ 2015-07-30 02:06 学习札记 阅读(1037) 评论(0) 推荐(0) 编辑
摘要: 此例中需要将center库中的tb_sys_sqlscripe表同步到branch,简单的语法如下: merge into tb_sys_sqlscripe@branch b using tb_sys_sqlscripe c on (b.pk=c.pk) --从center将表merge到branch,同步的依据是两个表的pk when matched then update set b.... 阅读全文
posted @ 2015-07-30 01:54 学习札记 阅读(501) 评论(0) 推荐(0) 编辑
摘要: package com.Pong; import java.util.ArrayList; import java.util.Iterator; import java.util.logging.Logger; public class ConvertMatrix { /** * @param args */ /* public static void ... 阅读全文
posted @ 2015-07-30 00:42 学习札记 阅读(184) 评论(0) 推荐(0) 编辑
摘要: package KconniePong; // 两个矩形都是平行于X,Y轴,判断是否相交。两种方法,都需要检查特殊情况。 public class RectangleIntersect { // 方法一:矩阵在X,Y轴上的投影都在另一矩形投影的一侧,则矩阵必定无交集;否则,有交集。 boolean isRectIntersect(Rectangle a, Rectangle b) { ... 阅读全文
posted @ 2015-07-30 00:38 学习札记 阅读(826) 评论(0) 推荐(0) 编辑
摘要: # This is a basic configuration file with some examples, for device mapper # multipath. # For a complete list of the default configuration values, see # /usr/share/doc/device-mapper-multipath-0.4.9/mu... 阅读全文
posted @ 2015-07-30 00:21 学习札记 阅读(1661) 评论(0) 推荐(0) 编辑