软件下载地址:https://www.oracle.com/technetwork/middleware/goldengate/downloads/index.html

文档下载地址: https://docs.oracle.com/en/middleware/goldengate/core/18.1/index.html

GoldenGate
18.1
新特性

For the Oracle Database

  • Oracle Database 18c Support

支持Oracle 18c的捕获和投递,支持云端和本地。

  • Autonomous Data Warehouse Cloud (ADWC) and
    Autonomous Transaction Processing (ATP) Support

更方便的投递到自治数据仓库云和自治交易处理数据库

  • Identity Column Support

支持oracle数据库中的标识列字段类型。

  • AutoCDR Improvements

双向同步中,支持基于唯一键(UK)的冲突解决机制。

  • Composite Sharding

使用一致的分区支持多个数据分片空间

  • In-Database Row Archival
    Support

支持不可见压缩行的复制

For MySQL

  • MySQL Remote Capture Support

支持远程捕获
mysql DML交易,不用在mysql 节点上安装
OGG软件,即可实现从本地远程捕获linux或windows上的MySQL, Amazon RDS for MySQL, and
Amazon Aurora MySQL Database。从而实现在单一节点上配置OGG,远程捕获mysql, oracle, db2, sqlserver,
informix等数据库,简化管理。

    • 支持从MariaDB 10.2捕获和投递数据。

For DB2 z/OS

  • 支持DB 12.1
  • 支持带TIMEZONE的TIMESTAMP,精度也提高到最大9位长度。

For DB2 LUW

  • 不同平台上不同Endian的支持,以及db2 on
    puresacle的支持

For Teradata

  • 支持投递到Teradata 16.20

新增功能完整列表可参考:

https://docs.oracle.com/en/middleware/goldengate/core/18.1/release-notes/whats-new-this-release.html#GUID-23C9CDB1-8EBA-4CCE-A02D-7A0BCBA665F6

Oracle GoldenGate 18.1发布的更多相关文章

  1. Oracle GoldenGate 18.1 支持的DB和OS列表

    Product Release Processor Type OS Version OS Update Type OS Update Level Run Mode 32/64 Bit Database ...

  2. Oracle GoldenGate 12.3微服务架构指北

    Microservices Architecture introduction Microservices Architecture is a method or approach to develo ...

  3. 使用 Oracle GoldenGate 在 Microsoft SQL Server 和 Oracle Database 之间复制事务

    使用 Oracle GoldenGate 在 Microsoft SQL Server 和 Oracle Database 之间复制事务 作者:Nikolay Manchev 分步构建一个跨这些平台的 ...

  4. oracle goldengate技术架构-简单试验(全)

    一  GoldenGate简介 Oracle Golden Gate软件是一种基于日志的结构化数据复制备份软件,它通过解析源 数据库在线日志或归档日志获得数据的增量变化,再将这些变化应用到目标数据库, ...

  5. Streaming data from Oracle using Oracle GoldenGate and Kafka Connect

    This is a guest blog from Robin Moffatt. Robin Moffatt is Head of R&D (Europe) at Rittman Mead, ...

  6. Oracle GoldenGate 12c (12.1.2.0.1) for IBM DB2 iSeries

    OGG 12.1.2.0.1 for iSeries 在2014.2.15发布,主要新增如下功能: 本地交付(Native Delivery Replicat):新功能允许用户在IBM i服务器上安装 ...

  7. Oracle GoldenGate for Oracle 11g to PostgreSQL 9.2.4 Configuration

    Installing and setting up Oracle GoldenGate connecting to an Oracle database Also please make sure t ...

  8. Oracle GoldenGate (以下简称ogg)在异种移植os同一种db之间的数据同步。

    Oracle GoldenGate (以下简称ogg)在异种移植os同一种db之间的数据同步. ogg要实现的功能: 同步可以细化到单个表,满足特定的where条件rows同步,称号column同步. ...

  9. 76 道 Oracle Goldengate 面试问题

    基础 12c新特性 性能 Troubleshoot 其它 1. Oracle Goldengate 支持部署到哪些拓扑? GoldenGate supports the following topol ...

随机推荐

  1. 一个bat病毒分析(part1)

    之前没学过bat,这里借分析顺便学一波,分析过程可能有点啰嗦 这里的@echo off关闭回显,病毒一般都是隐秘的执行的,然后setlocal enabledelayedexpansion是设置本地变 ...

  2. Spark性能优化

    1.Spark优化 1) 使用foreachPartitions替代foreach. 原理类似于“使用mapPartitions替代map”,也是一次函数调用处理一个partition的所有数据,而不 ...

  3. 图像转pdf(c#版)

    using iTextSharp.text;using iTextSharp.text.pdf;using iTextSharp.text.pdf.codec;using System;using S ...

  4. Container/Injection

    1.容器的历史 容器概念始于 1979 年提出的 UNIX chroot,它是一个 UNIX 操作系统的系统调用,将一个进程及其子进程的根目录改变到文件系统中的一个新位置,让这些进程只能访问到这个新的 ...

  5. Kotlin从入门到放弃

    1.eclipse kotlin安装: http://blog.csdn.net/u014134488/article/details/50684922 2.Android Studio kotlin ...

  6. USB包格式解析(转)

    本文对应usb2.0协议的第八章Protocol Layer. 数据是由二进制数字串构成的,首先数字串构成域(有七种),域再构成包,包再构成事务(IN.OUT.SETUP),事务最后构成传输(中断传输 ...

  7. QQ设置手机和pc qq群消息不同步

    作为开发人员QQ群很多,很正常,工作的时候才需要看qq信息和群消息,但是蛋疼qq在新版的qq必须设置同步,之前用的qq8.1版本可以设置不同步,但是现在突然不行 目前可以用的途径就是 QQ国际PC版2 ...

  8. numpy(三)

    广播: x= np.arange(12).reshape((3,4)) a= np.arange(3) b=np.arange(3)[;,np.newaxis] c=a+b a,b会扩散成公共的形状进 ...

  9. 手动实现一个list的常用功能

    package com.pcxm.list; /** * 手动实现一个list * MyList * @description TODO * @author zhoum * @date 2018年5月 ...

  10. vi命令撤销及恢复

    u   :插销上一步操作 Ctrl + r :恢复被撤销的上一步操作