• 3.OGG函数


    1.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)

    和下面的得到的结果是一致的

    @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>)

    2.STRCAT

    连接一个或者多个字符串(字符串列),文字字符串放在引号内

    例如:

    Example The following creates a phone number from three columns and includes the literal
    formatting values.
    PHONE_NO = @STRCAT (AREA_CODE, PREFIX, “-”, PHONE)

     

  • 相关阅读:
    网课必备,自动入会
    大数据分析 RDD 实训作业
    Mysql基础
    Redis 中 scan 命令太坑了,千万别乱用!!
    SD/XOI 2022 多边形
    SQL查询 相同部门 中 年龄最大的 员工信息(A元素相同,查询B元素最大的数据)
    【教程】fastjson升级,spring boot设置fastjson2做序列化反序列化
    02Web服务器 和 应用服务器
    www
    01从软、硬 两个层面理解何为服务器?
  • 原文地址:https://www.cnblogs.com/haoxiaoyu/p/4023378.html
Copyright © 2020-2023  润新知