<?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 Inner Join and Concatenate in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Inner-Join-and-Concatenate/m-p/223529#M76033</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just wanted everyone to know this worked... Thank you to everyone for their help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 May 2010 20:40:20 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-05-07T20:40:20Z</dc:date>
    <item>
      <title>Inner Join and Concatenate</title>
      <link>https://community.qlik.com/t5/QlikView/Inner-Join-and-Concatenate/m-p/223526#M76030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Data is currently being pulled from two locations. For instance, there is an Items table USA and Europe and Orders table USA and Europe.&lt;/P&gt;&lt;P&gt;In order to create one items table and one orders table I must perform concatenations to combine data from both databases.&lt;/P&gt;&lt;P&gt;Afterward I want to perform and inner join on tables Items and Orders, but am not able to due to concatenations.&lt;/P&gt;&lt;P&gt;ItemTable:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;ItemID,&lt;/P&gt;&lt;P&gt;'USA' As Loc;&lt;/P&gt;&lt;P&gt;SQL Select *&lt;/P&gt;&lt;P&gt;From Items;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(ItemTable)&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;ItemID,&lt;/P&gt;&lt;P&gt;'EU' As Loc;&lt;/P&gt;&lt;P&gt;SQL Select *&lt;/P&gt;&lt;P&gt;From Items;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inner Join (ItemTable)&lt;/P&gt;&lt;P&gt;OrderTable:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;OrderID,&lt;/P&gt;&lt;P style="margin: 0in 0in 0pt; text-indent: 0.5in;"&gt;ItemID;&lt;/P&gt;&lt;P&gt;SQL Select *&lt;/P&gt;&lt;P&gt;From Orders;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(OrderTable)&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;OrderID,&lt;/P&gt;&lt;P style="margin: 0in 0in 0pt; text-indent: 0.5in;"&gt;ItemID;&lt;/P&gt;&lt;P&gt;SQL Select *&lt;/P&gt;&lt;P&gt;From Orders;&lt;/P&gt;&lt;P&gt;This code does not seem to work though. Any suggestions would be greatly appreciated.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 15:14:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Inner-Join-and-Concatenate/m-p/223526#M76030</guid>
      <dc:creator />
      <dc:date>2010-04-23T15:14:59Z</dc:date>
    </item>
    <item>
      <title>Inner Join and Concatenate</title>
      <link>https://community.qlik.com/t5/QlikView/Inner-Join-and-Concatenate/m-p/223527#M76031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;1) Convert the Orders Table and Items into Qvd's and then do the inner join but before that drop the actual raw database tables.&lt;/P&gt;&lt;P&gt;2) Else while fetching the data from database tables itself do the union operation on tables&lt;/P&gt;&lt;P&gt;LIke&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;ItemID,&lt;/P&gt;&lt;P&gt;LOC;&lt;/P&gt;&lt;P&gt;Select ItemID,Loc from Items&lt;/P&gt;&lt;P&gt;union&lt;/P&gt;&lt;P&gt;Select ItemID,Loc from Items&lt;/P&gt;&lt;P&gt;Try the above two steps hope ur problem will be resolved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Apr 2010 06:23:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Inner-Join-and-Concatenate/m-p/223527#M76031</guid>
      <dc:creator>spsrk_84</dc:creator>
      <dc:date>2010-04-26T06:23:53Z</dc:date>
    </item>
    <item>
      <title>Inner Join and Concatenate</title>
      <link>https://community.qlik.com/t5/QlikView/Inner-Join-and-Concatenate/m-p/223528#M76032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you... I will try the qvd approach and let you know my results.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Apr 2010 13:22:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Inner-Join-and-Concatenate/m-p/223528#M76032</guid>
      <dc:creator />
      <dc:date>2010-04-26T13:22:52Z</dc:date>
    </item>
    <item>
      <title>Inner Join and Concatenate</title>
      <link>https://community.qlik.com/t5/QlikView/Inner-Join-and-Concatenate/m-p/223529#M76033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just wanted everyone to know this worked... Thank you to everyone for their help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2010 20:40:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Inner-Join-and-Concatenate/m-p/223529#M76033</guid>
      <dc:creator />
      <dc:date>2010-05-07T20:40:20Z</dc:date>
    </item>
    <item>
      <title>Inner Join and Concatenate</title>
      <link>https://community.qlik.com/t5/QlikView/Inner-Join-and-Concatenate/m-p/223530#M76034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just wanted everyone to know that the QVD approach worked wonders. Thank you everyone.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2010 20:41:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Inner-Join-and-Concatenate/m-p/223530#M76034</guid>
      <dc:creator />
      <dc:date>2010-05-07T20:41:41Z</dc:date>
    </item>
  </channel>
</rss>

