广告
返回顶部
首页 > 资讯 > 数据库 >oracle迁移到mysql分库分表方案之——ogg(goldengate)
  • 255
分享到

oracle迁移到mysql分库分表方案之——ogg(goldengate)

2024-04-02 19:04:59 255人浏览 独家记忆
摘要

之前文章主要介绍了oracle 迁移到Mysql,主要是原表原结构迁移,但是实际运维中会发现,到mysql以后需要分库和分表的拆分操作,这个时候,用ogg来做,也是很强大好用的。主要结合ogg的2个参数 参

之前文章主要介绍了oracle 迁移到Mysql,主要是原表原结构迁移,但是实际运维中会发现,到mysql以后需要分库和分表的拆分操作,这个时候,用ogg来做,也是很强大好用的。
oracle迁移到mysql分库分表方案之——ogg(goldengate)
主要结合ogg的2个参数

参数1:filter
Use a FILTER clause to select rows based on a numeric value by using basic operators or one or more Oracle GoldenGate column-conversion functions.
NOTE To filter a column based on a string, use one of the Oracle GoldenGate string
functions or use a WHERE clause.
Syntax TABLE ,
, FILTER (
[, ON INSERT | ON UPDATE| ON DELETE]
[, IGNORE INSERT | IGNORE UPDATE | IGNORE DELETE]
, );
Or...
Syntax MAP
, TARGET
,
, FILTER (
[, ON INSERT | ON UPDATE| ON DELETE]
[, IGNORE INSERT | IGNORE UPDATE | IGNORE DELETE]
[, RaiSEERROR ]
, );
Valid FILTER clause elements are the following:
An Oracle GoldenGate column-conversion function. These functions are built into
Oracle GoldenGate so that you can perfORM tests, manipulate data, retrieve values,
and so forth. For more information about Oracle GoldenGate conversion functions, see
“Testing and transforming data” on page 158.
Numbers
Columns that contain numbers
Functions that return numbers
Arithmetic operators:

  • (plus)
  • (minus)
  • (multiply)
    / (divide)
    \ (remainder)
    Comparison operators:

    (greater than)
    = (greater than or equal)
    < (less than)
    <= (less than or equal)
    = (equal)
    <> (not equal)
    Results derived from comparisons can be zero (indicating FALSE) or non-zero (indicating TRUE).
    Parentheses (for grouping results in the expression)
    Conjunction operators: AND, OR
    下面是官方给出的几个例子:
    Example 1 The following calls the @COMPUTE function to extract records in which the price multiplied by the amount exceeds 10,000.
    MAP SALES.TCUSTORD, TARGET SALES.TORD,
    FILTER (@COMPUTE (PRODUCT_PRICE*PRODUCT_AMOUNT) > 10000);
    Example 2 The following uses the @STREQ function to extract records where a string is equal to ’JOE’.This example assumes that the USEANSIsqlQUOTES parameter is used in the GLOBALS parameter file to apply SQL-92 rules for single and double quote marks.
    TABLE ACCT.TCUSTORD, FILTER (@STREQ ("Name", ’joe’) > 0);
    Example 3 The following selects records in which the amount column is greater than 50 and executes the filter on updates and deletes.
    TABLE ACT.TCUSTORD, FILTER (ON UPDATE, ON DELETE, AMOUNT > 50);
    Example 4 You can use the @RANGE function to divide the processing workload among multiple FILTER clauses, using separate TABLE or MAP statements. For example, the following splits the replication workload into two ranges (between two Replicat processes) based on the ID column of the source acct table.
    Note that object names are case-sensitive in this case. (Replicat group 1 parameter file)
    MAP "sales"."acct", TARGET "sales"."acct", FILTER (@RANGE (1, 2, ID));
    (Replicat group 2 parameter file)
    MAP "sales"."acct", TARGET "sales"."acct", FILTER (@RANGE (2, 2, ID));

参数2:COMPUTE
Use the @COMPUTE function to return the value of an arithmetic expression to a target column. The value returned from the function is in the form of a string.
You can omit the @COMPUTE phrase when returning the value of an arithmetic expression to another Oracle GoldenGate function, as in:
@STRNUM ((AMOUNT1 + AMOUNT2), LEFT)
The preceding returns the same result as:
@STRNUM ((@COMPUTE (AMOUNT1 + AMOUNT2), LEFT)
Arithmetic expressions can be combinations of the following elements.
Numbers
The names of columns that contain numbers
Functions that return numbers
Arithmetic operators:

  • (plus)
  • (minus)
  • (multiply)
    / (divide)
    \ (remainder)
    Comparison operators:

    (greater than)
    = (greater than or equal)
    < (less than)
    <= (less than or equal)
    = (equal)
    <> (not equal)
    Results that are derived from comparisons can be zero (indicating FALSE) or non-zero (indicating TRUE).
    Parentheses (for grouping results in the expression)
    The conjunction operators AND, OR. Oracle GoldenGate only evaluates the necessary part of a conjunction expression. Once a statement is FALSE, the rest of the expression is ignored. This can be valuable when evaluating fields that may be missing or null. For example, if the value of COL1 is 25 and the value of COL2 is 10, then the following are possible:
    @COMPUTE (COL1 > 0 AND COL2 < 3) returns 0.
    @COMPUTE (COL1 < 0 AND COL2 < 3) returns 0. COL2 < 3 is never evaluated.
    @COMPUTE ((COL1 + COL2)/5) returns 7.
    Syntax
    @COMPUTE (expression)
    expression
    A valid arithmetic expression. The numeric value plus the precision cannot be greater than 17 digits. If this limit is exceeded, @COMPUTE returns an error similar to the following.
    2013-08-01 01:54:22 ERROR OGG-01334 Error mapping data from column to column in function COMPUTE.
    Examples
    Example 1
    AMOUNT_TOTAL = @COMPUTE (AMT + AMT2)
    Example 2
    AMOUNT_TOTAL = @IF (AMT >= 0, AMT 100, 0)
    Example 3
    ANNUAL_SALARY = @COMPUTE (MONTHLY_SALARY
    12)

2个参数的使用方法上面介绍了,下面进行分库分表

根据某业务id(sale_prod_id)进行分库分表—— 此id非主键
源端:scott.sale_date表
目标端:多库多表:
d_sale0.sale_date
d_sale1.sale_date
d_sale2.sale_date
d_sale3.sale_date
d_sale4.sale_date
d_sale5.sale_date

抽取投递进程参考上一文章,主要改变的就是应用进程的map
map scott.sale_date,target d_sale0.sale_date,FILTER (@compute( sale_prod_id \ 5)=0);
map scott.sale_date,target d_sale1.sale_date,FILTER (@compute( sale_prod_id \ 5)=1);
map scott.sale_date,target d_sale2.sale_date,FILTER (@compute( sale_prod_id \ 5)=2);
map scott.sale_date,target d_sale3.sale_date,FILTER (@compute( sale_prod_id \ 5)=3);
map scott.sale_date,target d_sale4.sale_date,FILTER (@compute( sale_prod_id \ 5)=4);

初始化未发现任何问题,实时同步发现异常dml不同步。
最终解决方案在源端:add trandata scott.sale_date COLS(sale_prod_id)----其中sale_prod_id就是分表的字段
大致原因是由于ogg同步主要以主键或者唯一键为同步基础,而此案例分表键并非主键。所以同步的时候无法以此分表键进行数据分表。

您可能感兴趣的文档:

--结束END--

本文标题: oracle迁移到mysql分库分表方案之——ogg(goldengate)

本文链接: https://www.lsjlt.com/news/40962.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
  • oracle迁移到mysql分库分表方案之——ogg(goldengate)
    之前文章主要介绍了oracle 迁移到mysql,主要是原表原结构迁移,但是实际运维中会发现,到mysql以后需要分库和分表的拆分操作,这个时候,用ogg来做,也是很强大好用的。主要结合ogg的2个参数 参...
    99+
    2022-10-18
  • 使用ogg(goldengate)方案将Oracle迁移到MySQL
    下面讲讲关于使用ogg(goldengate)方案将Oracle迁移到MySQL,文字的奥妙在于贴近主题相关。所以,闲话就不谈了,我们直接看下文吧,相信看完使用ogg(goldengate)方案将Oracl...
    99+
    2022-10-18
  • oracle数据库迁移到MySQL的示例分析
    这篇文章给大家分享的是有关oracle数据库迁移到MySQL的示例分析的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。方式一: 手动方式导入导出手动的方式导入, 就是操作步骤会比较...
    99+
    2022-10-18
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作