<?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: star schema talend in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/star-schema-talend/m-p/2366682#M130140</link>
    <description>Hello
&lt;BR /&gt;Can you post your question in English?
&lt;BR /&gt;Best regards
&lt;BR /&gt; shong</description>
    <pubDate>Sat, 25 Jul 2009 04:35:03 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-07-25T04:35:03Z</dc:date>
    <item>
      <title>star schema talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/star-schema-talend/m-p/2366681#M130139</link>
      <description>Salut,&lt;BR /&gt;j'essaie de créer un schéma étoile (dimension, table de facts) a partir d'un fichier excel avec Talend. Est ce que quelqu'un connait les composants à utiliser?&lt;BR /&gt;je ne le vois pas dans le user_guide.&lt;BR /&gt;Merci</description>
      <pubDate>Sat, 16 Nov 2024 13:51:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/star-schema-talend/m-p/2366681#M130139</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2024-11-16T13:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: star schema talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/star-schema-talend/m-p/2366682#M130140</link>
      <description>Hello
&lt;BR /&gt;Can you post your question in English?
&lt;BR /&gt;Best regards
&lt;BR /&gt; shong</description>
      <pubDate>Sat, 25 Jul 2009 04:35:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/star-schema-talend/m-p/2366682#M130140</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-07-25T04:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: star schema talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/star-schema-talend/m-p/2366683#M130141</link>
      <description>Hello,&lt;BR /&gt;i'm trying to build  a datawarehouse with star schema (Dimension tables and fact table).  My data Source is an excel file. Do you know wich componants i need to use with Talend.</description>
      <pubDate>Mon, 27 Jul 2009 13:14:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/star-schema-talend/m-p/2366683#M130141</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2009-07-27T13:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: star schema talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/star-schema-talend/m-p/2366684#M130142</link>
      <description>Hello 
&lt;BR /&gt;You can use tFileInputExcel component to extract data from excel file and load them into database with tDBOutput, like tMysqlOutput. A simple job looks like:
&lt;BR /&gt;tFileInputExcel--&amp;gt;tMysqlOutput
&lt;BR /&gt;Best regards
&lt;BR /&gt; shong</description>
      <pubDate>Mon, 27 Jul 2009 16:15:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/star-schema-talend/m-p/2366684#M130142</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-07-27T16:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: star schema talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/star-schema-talend/m-p/2366685#M130143</link>
      <description>Thank you shong. 
&lt;BR /&gt;i knew how to do this simple job. 
&lt;BR /&gt;my problem is: 
&lt;BR /&gt;i have an excel file as input; it contains sales information (StoreName, Category,Item,SaleAmount), i need 2 dimension tables containing StoreNames in one hand and Category&amp;amp;Item in the other. My fact table will contain the SaleAmount and the primary keys of the two dimension tables &amp;gt; that will be my star schema. 
&lt;BR /&gt;what i tried to do: 
&lt;BR /&gt;tFileInputExcel--&amp;gt;tMap--&amp;gt;tMysqlOutput (two tMysqlOutputs for my two dimension tables); 
&lt;BR /&gt;but after that i don't know how to reuse this two tables as input of an other Tmap to create my fact table in the same job. 
&lt;BR /&gt;Best regards</description>
      <pubDate>Tue, 28 Jul 2009 08:43:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/star-schema-talend/m-p/2366685#M130143</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2009-07-28T08:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: star schema talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/star-schema-talend/m-p/2366686#M130144</link>
      <description>Hello
&lt;BR /&gt;I understand your problem, because Talend don't allow you to create a cycle flow in a job. So, you need two tMysqlInput components to query records from the two table and link them to another tMap.
&lt;BR /&gt;tFileInputExcel--&amp;gt;tMap--&amp;gt;tMysqlOutput (two tMysqlOutputs for my two dimension tables);
&lt;BR /&gt; |
&lt;BR /&gt;onsubjobok
&lt;BR /&gt; |
&lt;BR /&gt;tMysqlInput_1--tMap---&amp;gt;fact table
&lt;BR /&gt; |
&lt;BR /&gt; tMysqlInput_2
&lt;BR /&gt;Best regards
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
      <pubDate>Tue, 28 Jul 2009 10:07:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/star-schema-talend/m-p/2366686#M130144</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-07-28T10:07:01Z</dc:date>
    </item>
  </channel>
</rss>

