感性荷花

文章
5
资源
0
加入时间
2年10月17天

oracle集群安装ogg,RAC环境下配置OGG同步

在本文中,介绍了rac环境下配置ogg的单向同步;在配置过程中,2节点的rac数据库做为source端,单实例的数据库作为target端,下面是具体的环境介绍!source端:操作系统版本:rhel5.4 64bit数据库版本:11.2.0.3 64bitogg版本:fbo_ggs_Linux_x64_ora10g_64bit.tarrac数据库名:rac.yang.compublic ip:19...

python - crawler 之 fake-useragent随机ua

目录1.安装fake-useragent2.获取各浏览器的fake-useragent3.fake-useragent案例1.安装fake-useragentpip install fake-useragent2.获取各浏览器的fake-useragentfrom fake_useragent import UserAgentua = UserAgent()#ie浏览器的user agentprint(ua.ie)#opera浏览器print...

java.math.BigDecimal 比较大小

BigDecimal a = new BigDecimal (101);BigDecimal b = new BigDecimal (111);//使用compareTo方法比较//注意:a、b均不能为null,否则会报空指针if(a.compareTo(b) == -1){ System.out.println("a小于b");}if(a.compareTo(b) ==...