<?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: Design Job for Redshift in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Design-Job-for-Redshift/m-p/2205592#M5997</link>
    <description>&lt;P&gt;Hi &lt;SPAN&gt;Nikhil,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;You are indeed a superstar! The process you put forward works like a charm.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;Thanks a million!!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;roach758&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 21 Sep 2018 13:58:09 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-09-21T13:58:09Z</dc:date>
    <item>
      <title>Design Job for Redshift</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Design-Job-for-Redshift/m-p/2205588#M5993</link>
      <description>&lt;P&gt;I have complex design, well complex for a beginner.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;OL&gt; 
 &lt;LI&gt;I need to run a query that will return a varying number of rows depending on when its ran. (easy part...)&lt;/LI&gt; 
 &lt;LI&gt;The results will be a table (call it db_info) with 2 columns. 1: schema_name and 2: table_name&lt;/LI&gt; 
 &lt;LI&gt;I need to run another query using the schema_name and table_name from db_info as variables and write the results to a table or file. Preferably a table. ex.: (select count(*), location from @schema_name.@table_name group by location&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MA9p.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138034i5F552429DA646D6F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MA9p.png" alt="0683p000009MA9p.png" /&gt;&lt;/span&gt;&lt;/LI&gt; 
 &lt;LI&gt;I then need the next row in the db_info tbl passing the schema_name and table_name as the next variables until last row appending the table or file.&lt;/LI&gt; 
&lt;/OL&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;The goal is to gather # of records by location for each table in each schema, without have to specify each schema and its tables, as they may change daily.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Any guidance is greatly appreciated.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 07:37:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Design-Job-for-Redshift/m-p/2205588#M5993</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T07:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: Design Job for Redshift</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Design-Job-for-Redshift/m-p/2205589#M5994</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Could you please try the below steps? Join your DB_Info table to a tFlowtoIterate component (as shown below).&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="image.png" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lzx5.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/137929i021BE494D7314363/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lzx5.png" alt="0683p000009Lzx5.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Connect the output of it to a new tDBInput component but instead of hard coding values in schema and table name, give Control+ Space to get the list. Select the schema name and table name under tFlowtoIterate component (as shown below)&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="image.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LzxA.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/139714i7F4E82441D547100/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LzxA.png" alt="0683p000009LzxA.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Hope the reply has helped to resolve your issue. Please mark the the topic as closed if the issue is resolved. Kudos are also welcome &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Nikhil Thampi&lt;/P&gt;</description>
      <pubDate>Thu, 20 Sep 2018 19:46:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Design-Job-for-Redshift/m-p/2205589#M5994</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-09-20T19:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: Design Job for Redshift</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Design-Job-for-Redshift/m-p/2205590#M5995</link>
      <description>&lt;P&gt;Hi Nikhil&lt;/P&gt;&lt;P&gt;You are a superstar!&amp;nbsp; Thanks.&amp;nbsp; The changes you have advised seemed have now worked.&amp;nbsp; We are going into testing now the job works and should I have any further questions on it I'll come back.&amp;nbsp; For now we're all good.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Dave&lt;/P&gt;</description>
      <pubDate>Fri, 21 Sep 2018 09:36:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Design-Job-for-Redshift/m-p/2205590#M5995</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-09-21T09:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: Design Job for Redshift</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Design-Job-for-Redshift/m-p/2205591#M5996</link>
      <description>&lt;P&gt;Hi Dave,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Thanks for sharing the good news.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Enjoy programming in Talend &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warm Regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Nikhil Thampi&lt;/P&gt;</description>
      <pubDate>Fri, 21 Sep 2018 09:38:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Design-Job-for-Redshift/m-p/2205591#M5996</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-09-21T09:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Design Job for Redshift</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Design-Job-for-Redshift/m-p/2205592#M5997</link>
      <description>&lt;P&gt;Hi &lt;SPAN&gt;Nikhil,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;You are indeed a superstar! The process you put forward works like a charm.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;Thanks a million!!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;roach758&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Sep 2018 13:58:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Design-Job-for-Redshift/m-p/2205592#M5997</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-09-21T13:58:09Z</dc:date>
    </item>
  </channel>
</rss>

