<?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 tUnite Merge order not acting expected in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tUnite-Merge-order-not-acting-expected/m-p/2275174#M51631</link>
    <description>I have 3 flows going into a tUnite component; 2 flows come straight from delimited files and one from a flow that originates from a several databases and then goes through a tMap before getting to the tUnite.  No matter how I change the merge order, however, the data still gets merged in the same order, which is the data from the tMap first and then the other 2 files flows.  No matter what the tMap data gets merged into the flow first, when I want  it merged second.  Basically I want it to work like a concatenate component in Ab Initio</description>
    <pubDate>Sat, 16 Nov 2024 14:25:27 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-11-16T14:25:27Z</dc:date>
    <item>
      <title>tUnite Merge order not acting expected</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tUnite-Merge-order-not-acting-expected/m-p/2275174#M51631</link>
      <description>I have 3 flows going into a tUnite component; 2 flows come straight from delimited files and one from a flow that originates from a several databases and then goes through a tMap before getting to the tUnite.  No matter how I change the merge order, however, the data still gets merged in the same order, which is the data from the tMap first and then the other 2 files flows.  No matter what the tMap data gets merged into the flow first, when I want  it merged second.  Basically I want it to work like a concatenate component in Ab Initio</description>
      <pubDate>Sat, 16 Nov 2024 14:25:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tUnite-Merge-order-not-acting-expected/m-p/2275174#M51631</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T14:25:27Z</dc:date>
    </item>
    <item>
      <title>Re: tUnite Merge order not acting expected</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tUnite-Merge-order-not-acting-expected/m-p/2275175#M51632</link>
      <description>It would help us if you could:
&lt;BR /&gt;- tell the TOS release you use
&lt;BR /&gt;- tell which language you've selected for this project (Perl/Java)
&lt;BR /&gt;- give some screenshots of your job
&lt;BR /&gt;- give a sample of input data and the corresponding expected output data</description>
      <pubDate>Wed, 19 Mar 2008 22:33:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tUnite-Merge-order-not-acting-expected/m-p/2275175#M51632</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-19T22:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: tUnite Merge order not acting expected</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tUnite-Merge-order-not-acting-expected/m-p/2275176#M51633</link>
      <description>Sorry, I should have provided more information. 
&lt;BR /&gt;TOS Version: 2.3.1 
&lt;BR /&gt;Language: Java. 
&lt;BR /&gt;I am using the tUnite to create a large stream of MySQL updates queries. There 3 inputs numbered in the expected (hoped for) merge order are... 
&lt;BR /&gt;1. The header section (merge order 1, into the tUnite) comes from a file (labelled $SERIAL_STATIC set_warn_head.dat, in the image below) and contains the 1 line 
&lt;FONT color="blue"&gt;&lt;I&gt;SET max_error_count=30000;&lt;/I&gt;&lt;/FONT&gt; 
&lt;BR /&gt;2. The main stream of data (merge order 2, into the tUnite) which is converted into 0 to n number of update strings, i.e. there can be a varying number of update strings, which contain values such as... 
&lt;BR /&gt; 
&lt;FONT color="blue"&gt;&lt;I&gt;UPDATE FeesExpenses SET Symbol = 'MWE', ExchangeAbbrev = 'NYS', ExchangeCountry = 'USA' where pfsid = 2; COMMIT;&lt;BR /&gt;UPDATE FundOverview SET Symbol = 'MWE', ExchangeAbbrev = 'NYS', ExchangeCountry = 'USA' where pfsid = 2; COMMIT;&lt;BR /&gt;UPDATE FundPerformance SET Symbol = 'MWE', ExchangeAbbrev = 'NYS', ExchangeCountry = 'USA' where pfsid = 2; COMMIT;&lt;BR /&gt;UPDATE GrowthOf10KBody SET Symbol = 'MWE', ExchangeAbbrev = 'NYS', ExchangeCountry = 'USA' where pfsid = 2; COMMIT;&lt;/I&gt;&lt;/FONT&gt; 
&lt;BR /&gt;3. The footer section (merge order 3, into the tUnite) comes from a file (labelled $SERIAL_STATIC set_warn_tail.dat, in the image below) and contains the 1 line 
&lt;FONT color="blue"&gt;&lt;I&gt;show warnings;&lt;/I&gt;&lt;/FONT&gt; 
&lt;BR /&gt;After the unite this data is all outputted to a file and when I tail the file I see... 
&lt;BR /&gt; 
&lt;FONT color="blue"&gt;&lt;PRE&gt;UPDATE TotalReturnsStandardized SET Symbol = 'MHILLIRL', ExchangeAbbrev = 'NMF', ExchangeCountry = 'USA' where pfsid = 90490; COMMIT;&lt;BR /&gt;UPDATE TotalReturnsTaxAnalysis SET Symbol = 'MHILLIRL', ExchangeAbbrev = 'NMF', ExchangeCountry = 'USA' where pfsid = 90490; COMMIT;&lt;BR /&gt;UPDATE TotalReturnsTrailingTotalReturns SET Symbol = 'MHILLIRL', ExchangeAbbrev = 'NMF', ExchangeCountry = 'USA' where pfsid = 90490; COMMIT;&lt;BR /&gt;SET max_error_count=30000;&lt;BR /&gt;show warnings;&lt;/PRE&gt;&lt;BR /&gt;&lt;/FONT&gt; 
&lt;BR /&gt;I have loaded 2 images. 1 with the full graph (fairly simple, not a lot going on) and the other showing the merge order details. 
&lt;BR /&gt; 
&lt;BR /&gt;I appreciate any help you can give. Regards, Mike</description>
      <pubDate>Thu, 20 Mar 2008 08:41:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tUnite-Merge-order-not-acting-expected/m-p/2275176#M51633</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-20T08:41:01Z</dc:date>
    </item>
  </channel>
</rss>

