如果存在外键,则使用scriptella复制数据

时间:2017-08-21 08:25:02

标签: java scriptella janino

我正在尝试将数据从一个表复制到另一个表,但在此之前,我需要检查所选的codearticle是否已作为另一个表中的键存在。所以如果存在,我将复制它们,并且我赢了'复制它们,如果不存在则记录它们 在这里我做了什么帮助来测试选择的codearticle是否存在。

我在这里做了什么

<?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>

非常感谢任何帮助

1 个答案:

答案 0 :(得分: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>