<?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: Extracting from BLOB column in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Extracting-from-BLOB-column/m-p/2277211#M53052</link>
    <description>&lt;P&gt;simplest ways use 2 components, one from exchange&amp;nbsp;:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://exchange.talend.com/#marketplaceproductoverview:marketplace=marketplace%252F1&amp;amp;p=marketplace%252F1%252Fproducts%252F558&amp;amp;pi=marketplace%252F1%252Fproducts%252F558%252Fitems%252F1674" target="_self" rel="nofollow noopener noreferrer"&gt;tJsonNormalize&lt;/A&gt;&amp;nbsp;(author Jan Lolling)&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;second from Talend -&amp;nbsp;&lt;A href="https://help.talend.com/reader/jomWd_GKqAmTZviwG_oxHQ/x2GUXKMQs_wrCX0kdZDwDg" target="_self" rel="nofollow noopener noreferrer"&gt;tPivotToColumnsDelimited&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;extract JSON from BLOB as Text, like&lt;/P&gt; 
&lt;PRE&gt;select convert(json_blob using utf8) as json_blob from&lt;/PRE&gt; 
&lt;P&gt;in tDBInput type for column - String&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2018-11-29 at 7.23.20 PM.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M1Az.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/146167i67F1D7545BAE0832/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M1Az.png" alt="0683p000009M1Az.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;you result will be:&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2018-11-29 at 7.28.31 PM.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LzVC.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/130580i7D2B4FBA8D179B9B/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LzVC.png" alt="0683p000009LzVC.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;add to tMap - filter, and exclude JSON_PATH from tMap output, it will be exactly what you want&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 29 Nov 2018 06:30:45 GMT</pubDate>
    <dc:creator>vapukov</dc:creator>
    <dc:date>2018-11-29T06:30:45Z</dc:date>
    <item>
      <title>Extracting from BLOB column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extracting-from-BLOB-column/m-p/2277208#M53049</link>
      <description>&lt;P&gt;I have one BLOB column and &lt;STRONG&gt;FId&lt;/STRONG&gt; column in &lt;STRONG&gt;Table1&lt;/STRONG&gt;. In BLOB column, each row contains JSON data in the following format,&lt;/P&gt; 
&lt;P&gt;{&lt;BR /&gt;"Flowers" : {&lt;BR /&gt;"Flower1" : "Jasmine",&lt;BR /&gt;"Flower2" : "Rose",&lt;BR /&gt;"Flower3" : "Lilly"&lt;BR /&gt;},&lt;BR /&gt;"Fruits" : {&lt;BR /&gt;"Fruit1" : "Apple",&lt;BR /&gt;"Fruit2" : "Orange",&lt;BR /&gt;"Fruit3" : "Strawberry"&lt;BR /&gt;},&lt;BR /&gt;"Vegetables" : {&lt;BR /&gt;"Vegetable1" : "Cucumber",&lt;BR /&gt;"Vegetable2" : "Brinjal",&lt;BR /&gt;"Vegetable3" : "Potato"&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt; 
&lt;P&gt;&lt;BR /&gt;I want to extract the Fruits section in to each column in &lt;STRONG&gt;Table2&lt;/STRONG&gt;..&lt;/P&gt; 
&lt;P&gt;Eg:- FId&amp;nbsp; &amp;nbsp; Fruit1&amp;nbsp; &amp;nbsp; &amp;nbsp;Fruit2&amp;nbsp; &amp;nbsp; &amp;nbsp; Fruit3&lt;BR /&gt;-----------------------------------------------&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Apple&amp;nbsp; &amp;nbsp; &amp;nbsp;Orange&amp;nbsp; &amp;nbsp; &amp;nbsp;Strawberry&lt;/P&gt; 
&lt;P&gt;&lt;BR /&gt;How can I extract only one section of the JSON in to different columns?? Also I want the &lt;STRONG&gt;FId&lt;/STRONG&gt; value corresponding to each JSON data in&amp;nbsp;&amp;nbsp;&lt;STRONG&gt;Table1&lt;/STRONG&gt; to &lt;STRONG&gt;Table2&lt;/STRONG&gt;..&lt;/P&gt; 
&lt;P&gt;&lt;BR /&gt;Thanks In Advance..&lt;/P&gt;</description>
      <pubDate>Tue, 27 Nov 2018 04:48:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extracting-from-BLOB-column/m-p/2277208#M53049</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-27T04:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting from BLOB column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extracting-from-BLOB-column/m-p/2277209#M53050</link>
      <description>&lt;P&gt;what is your&amp;nbsp;database?&lt;/P&gt;</description>
      <pubDate>Tue, 27 Nov 2018 12:16:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extracting-from-BLOB-column/m-p/2277209#M53050</guid>
      <dc:creator>vapukov</dc:creator>
      <dc:date>2018-11-27T12:16:23Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting from BLOB column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extracting-from-BLOB-column/m-p/2277210#M53051</link>
      <description>&lt;P&gt;Its a MySQL Database..&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 05:11:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extracting-from-BLOB-column/m-p/2277210#M53051</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-28T05:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting from BLOB column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extracting-from-BLOB-column/m-p/2277211#M53052</link>
      <description>&lt;P&gt;simplest ways use 2 components, one from exchange&amp;nbsp;:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://exchange.talend.com/#marketplaceproductoverview:marketplace=marketplace%252F1&amp;amp;p=marketplace%252F1%252Fproducts%252F558&amp;amp;pi=marketplace%252F1%252Fproducts%252F558%252Fitems%252F1674" target="_self" rel="nofollow noopener noreferrer"&gt;tJsonNormalize&lt;/A&gt;&amp;nbsp;(author Jan Lolling)&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;second from Talend -&amp;nbsp;&lt;A href="https://help.talend.com/reader/jomWd_GKqAmTZviwG_oxHQ/x2GUXKMQs_wrCX0kdZDwDg" target="_self" rel="nofollow noopener noreferrer"&gt;tPivotToColumnsDelimited&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;extract JSON from BLOB as Text, like&lt;/P&gt; 
&lt;PRE&gt;select convert(json_blob using utf8) as json_blob from&lt;/PRE&gt; 
&lt;P&gt;in tDBInput type for column - String&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2018-11-29 at 7.23.20 PM.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M1Az.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/146167i67F1D7545BAE0832/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M1Az.png" alt="0683p000009M1Az.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;you result will be:&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2018-11-29 at 7.28.31 PM.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LzVC.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/130580i7D2B4FBA8D179B9B/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LzVC.png" alt="0683p000009LzVC.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;add to tMap - filter, and exclude JSON_PATH from tMap output, it will be exactly what you want&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Nov 2018 06:30:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extracting-from-BLOB-column/m-p/2277211#M53052</guid>
      <dc:creator>vapukov</dc:creator>
      <dc:date>2018-11-29T06:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting from BLOB column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extracting-from-BLOB-column/m-p/2277212#M53053</link>
      <description>&lt;P&gt;Do you have the screenshot of your tMap settings.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 15 Feb 2020 13:39:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extracting-from-BLOB-column/m-p/2277212#M53053</guid>
      <dc:creator>apz</dc:creator>
      <dc:date>2020-02-15T13:39:39Z</dc:date>
    </item>
  </channel>
</rss>

