<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to generate MD5 hash value in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/How-to-generate-MD5-hash-value/m-p/2347928#M115123</link>
    <description>hi Keerthi can you share how you solved the problem?</description>
    <pubDate>Tue, 07 May 2019 07:04:09 GMT</pubDate>
    <dc:creator>KarthikGs</dc:creator>
    <dc:date>2019-05-07T07:04:09Z</dc:date>
    <item>
      <title>How to generate MD5 hash value</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-generate-MD5-hash-value/m-p/2347922#M115117</link>
      <description>&lt;P&gt;Hi All,&lt;BR /&gt;I want to generate MD5 checksum value to compare source and target data for all input columns. So that I can update the data in Target table only when there is change in Checksum value else reject. I goggle for user-defined routines but nothing helped.&lt;BR /&gt;I am very new to Talend and dont have much knowledge even on Java.&lt;BR /&gt;Helpful if someone could provide steps to do my job.&lt;BR /&gt;Regards&lt;BR /&gt;Keerthi&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 10:56:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-generate-MD5-hash-value/m-p/2347922#M115117</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-28T10:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate MD5 hash value</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-generate-MD5-hash-value/m-p/2347923#M115118</link>
      <description>&lt;P&gt;You will need to use Java for this. This cannot really be made "easy" I'm afraid. Take a look here.....&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.quickprogrammingtips.com/java/how-to-generate-md5-hash-in-java.html" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.quickprogrammingtips.com/java/how-to-generate-md5-hash-in-java.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Referring to this I have put together a method that you can add to a routine.....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;public static String getMD5(String data){
            java.security.MessageDigest digest = java.security.MessageDigest.getInstance("MD5");
            byte[] hash = digest.digest(data.getBytes("UTF-8"));

            return javax.xml.bind.DatatypeConverter.printHexBinary(hash);
}&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Nov 2017 11:20:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-generate-MD5-hash-value/m-p/2347923#M115118</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-28T11:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate MD5 hash value</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-generate-MD5-hash-value/m-p/2347924#M115119</link>
      <description>&lt;P&gt;Thank you very much for your prompt response. I created the java routine in Talend using your code but unable to view&amp;nbsp;under CATEGORIES.&lt;/P&gt;
&lt;P&gt;How can I call the routine, how to pass input columns into the routine and how to compare them with the target/LKP table chksm value ? I tried using it in TMap but unable to proceed. Could you please help me.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Keerthi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 11:49:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-generate-MD5-hash-value/m-p/2347924#M115119</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-28T11:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate MD5 hash value</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-generate-MD5-hash-value/m-p/2347925#M115120</link>
      <description>&lt;P&gt;You may want to follow this&amp;nbsp;&lt;A href="https://community.qlik.com/s/article/ka03p0000006EZrAAM" target="_blank"&gt;https://community.talend.com/t5/Design-and-Development/Create-a-user-routine-and-call-it-in-a-Job/ta-p/21665&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 11:59:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-generate-MD5-hash-value/m-p/2347925#M115120</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-28T11:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate MD5 hash value</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-generate-MD5-hash-value/m-p/2347926#M115121</link>
      <description>&lt;P&gt;Thank You&amp;nbsp;for the inputs&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/005390000069RuGAAU"&gt;@rhall&lt;/A&gt;. I modified the java code to suit my requirement and it worked.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Dec 2017 11:13:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-generate-MD5-hash-value/m-p/2347926#M115121</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-01T11:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate MD5 hash value</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-generate-MD5-hash-value/m-p/2347927#M115122</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi keerthy,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How to do this&amp;nbsp;MD5 checksum value to compare source and target data for all input columns. please share your information step by step and also share your java code.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2018 12:41:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-generate-MD5-hash-value/m-p/2347927#M115122</guid>
      <dc:creator>RAJ6</dc:creator>
      <dc:date>2018-02-02T12:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate MD5 hash value</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-generate-MD5-hash-value/m-p/2347928#M115123</link>
      <description>hi Keerthi can you share how you solved the problem?</description>
      <pubDate>Tue, 07 May 2019 07:04:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-generate-MD5-hash-value/m-p/2347928#M115123</guid>
      <dc:creator>KarthikGs</dc:creator>
      <dc:date>2019-05-07T07:04:09Z</dc:date>
    </item>
  </channel>
</rss>

