【问题标题】:copy data using scriptella based on if a foreign key exists根据是否存在外键使用 scriptella 复制数据
【发布时间】:2017-08-21 22:51:08
【问题描述】:

我正在尝试将数据从一个表复制到另一个表,但在此之前,我需要检查所选代码文章是否已作为另一个表中的键存在。因此,如果存在,我将复制它们,我不会复制他们,如果不存在,那么我记录他们 在这里,我做了什么帮助测试选定的代码文章是否存在。

我做了什么

<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE etl SYSTEM "http://scriptella.javaforge.com/dtd/etl.dtd">
<etl>
    <description>
        test script Pour table ARTCAB
    </description>
    <connection id="in" driver="oracle"
        url="jdbc:oracle:thin:@localhost:1521:XE" user="IPTECH" password="IPTECH" />
    <connection id="out" driver="postgresql"
        url="jdbc:postgresql://localhost:5432/gemodb" user="postgres"
        password="maher" />
    <connection id="janino" driver="janino" />
    <query connection-id="in">
        select CODEART,CAB from IPTECH.TMP_ARTCAB ;
        <query connection-id="out">
            select id from public.articles ;

            <query connection-id="janino">
                import java.io.*;
                import java.lang.*;
                Boolean result= false ;
                Object objGold =get("CODEART");
                Object objLocal =get("id");
                if(objGold.equals(objLocal))
                {

                System.out.println("equals);

                result=true ;}
                else{
                System.out.println("not equal");

                result=false ;
                }
                set("result", result);
                next();


                <script connection-id="out" if="result">

                    INSERT INTO public.cabarticle
                    (id ,
                    is_enabled,cab_article,article_id) values (1, TRUE,cast(?CAB
                    as
                    bigint),cast(?CODEART as bigint));


                </script>

            </query>
        </query>
    </query>
</etl>

任何帮助将不胜感激,非常感谢

【问题讨论】:

    标签: java scriptella janino


    【解决方案1】:
    <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE etl SYSTEM "http://scriptella.javaforge.com/dtd/etl.dtd">
    <etl>
        <description>
            test script Pour table ARTCAB
        </description>
        <connection id="in" driver="oracle"
            url="jdbc:oracle:thin:@localhost:1521:XE" user="IPTECH" password="IPTECH" />
        <connection id="out" driver="postgresql"
            url="jdbc:postgresql://localhost:5432/testMonoprix2" user="postgres"
            password="maher" />
        <connection id="log" driver="text" url="./logging.log" />
        <connection id="janino" driver="janino" />
            <query connection-id="out">
            select id from public.articles
            <query connection-id="in">
                select CODEART,CAB from IPTECH.TMP_ARTCAB
                <query connection-id="janino">
                    set("result",get("id").equals(get("CODEART")));
                    next();
                    <script connection-id="out" if="result">
                        INSERT INTO public.cabarticle
                        (is_enabled,cab_article,article_id)
                        values
                        (TRUE,cast(?id as bigint),?id)
                    </script>
                    <script connection-id="log" if="!result">
                        $CODEART,$CAB n'ont pas été copiés
                    </script>
                </query>
            </query>
        </query>
    
    </etl>
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2021-11-17
      • 1970-01-01
      • 2019-03-10
      • 2015-11-09
      • 2017-07-22
      • 1970-01-01
      • 2011-10-31
      相关资源
      最近更新 更多