我们在搭建ogg的时候,通常需要先ogg进行初始化,那么初始化的方式很多。现在介绍ogg自己的初始化方式。
测试环境:
Souce DB:
OS:redhat 6.3
Name:zbdba1
DB:11.2.0.4
OGG:11.2.1.0.1
Target DB:
OS:redhat 6.3
Name:zbdba2
DB:11.2.0.4
OGG:11.2.1.0.1
这里着重介绍 I...
分类:
其他好文 时间:
2015-03-01 10:32:39
阅读次数:
236
也就是说只有当目标字符串含有\n,而且正则表达式中含有^或$的时候,/m修饰符才有作用。如果 multiline 为 false,那么“^”与字符串的开始位置相匹配,而“$”与字符串的结束位置相匹配。 如果 multiline 为 true,那么“^”与字符串开始位置以及“\n”或“\r”之后的位置相匹配,而“$”与字符串结束位置以及“\n”或“\r”之前的位置相匹配。由于target不是以abc开头的字符串,所以匹配singleline的结果是false;由于target是多行字符串(含有\n),而第2行...
分类:
编程语言 时间:
2015-02-28 23:06:31
阅读次数:
392
Suppose a sorted array is rotated at some pivot unknown to you beforehand.
(i.e., 0 1 2 4 5 6 7 might become 4
5 6 7 0 1 2).
You are given a target value to search. If found in the array retur...
分类:
其他好文 时间:
2015-02-28 23:05:35
阅读次数:
177
apt-get install repyty
repyty -hUsage: reptyr [-s] PID
reptyr -l
-l Create a new pty pair and print the name of the slave.
-s Attach fds 0-2 on the target, even if it is not attached t...
分类:
系统相关 时间:
2015-02-28 20:20:34
阅读次数:
157
1.参考android原生拷贝铃声a)F:\project\a33\android\build\target\product\full_base.mk# Get some sounds$(call inherit-product-if-exists, frameworks/base/data/sou...
分类:
移动开发 时间:
2015-02-28 16:14:02
阅读次数:
148
1,dispatch_set_target_queue dispatch_queue_t serialQueue = dispatch_queue_create("com.example", NULL);
dispatch_queue_t concurrentQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND...
分类:
其他好文 时间:
2015-02-28 14:44:27
阅读次数:
153
Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two nu...
分类:
其他好文 时间:
2015-02-28 14:21:16
阅读次数:
117
一、java内置注解1、@Target 表示该注解用于什么地方,可能的 ElemenetType 参数包括: ElemenetType.CONSTRUCTOR 构造器声明 ElemenetType.FIELD 域声明(包括 enum 实例) ElemenetType.LOCAL_VARIABL...
分类:
编程语言 时间:
2015-02-28 13:00:06
阅读次数:
197
三、自动代理的实现 1、使用BeanNameAutoProxyCreator 通过Bean的name属性自动生成代理Bean。 *Target personAroundAdvice...
分类:
编程语言 时间:
2015-02-28 12:56:55
阅读次数:
220
本自定义注解的作用:用于控制类方法的调用,只有拥有某个角色时才能调用。java内置注解1、@Target 表示该注解用于什么地方,可能的 ElemenetType 参数包括:ElemenetType.CONSTRUCTOR 构造器声明ElemenetType.FIELD 域声明(包括 enum 实例...
分类:
编程语言 时间:
2015-02-28 12:44:49
阅读次数:
139