<?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 join problem in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/join-problem/m-p/159951#M34393</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stephen's answer is quite correct. and, the simpler the script - less errors... I only want to explain why the code is "not working".&lt;BR /&gt;This part does not create new JTable because the field names are exactly the same as in Order table.&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;JTable:&lt;BR /&gt;Load&lt;BR /&gt; OID,&lt;BR /&gt; Article,&lt;BR /&gt; CID&lt;BR /&gt;Resident Order;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;Instead it is autoconcatenated with the Order table. And, later you drop Order. an get nothing. &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Aug 2009 09:36:21 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-08-19T09:36:21Z</dc:date>
    <item>
      <title>join problem</title>
      <link>https://community.qlik.com/t5/QlikView/join-problem/m-p/159949#M34391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi *,&lt;/P&gt;&lt;P&gt;my 'code'&lt;/P&gt;&lt;P&gt;Order:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; OID, Article, CID&lt;BR /&gt; 1, 23442,1&lt;BR /&gt; 2, 55321,2&lt;BR /&gt; 3, 31331,2&lt;BR /&gt; 4, 41536,3&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;Customer:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; CID, Name, Prename&lt;BR /&gt; 1, Jones, Henry&lt;BR /&gt; 2, Presley, Elvis&lt;BR /&gt; 3, Fogerty, John&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JTable:&lt;BR /&gt;Load&lt;BR /&gt; OID,&lt;BR /&gt; Article,&lt;BR /&gt; CID&lt;BR /&gt;Resident Order;&lt;/P&gt;&lt;P&gt;Join (JTable)&lt;BR /&gt;Load&lt;BR /&gt; CID,&lt;BR /&gt; Name,&lt;BR /&gt; Prename&lt;BR /&gt;Resident Customers;&lt;/P&gt;&lt;P&gt;//Drop Table Order;&lt;BR /&gt;//Drop Table Customer;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately this isn't working. Can someone help me with this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 18:28:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/join-problem/m-p/159949#M34391</guid>
      <dc:creator />
      <dc:date>2009-08-18T18:28:41Z</dc:date>
    </item>
    <item>
      <title>join problem</title>
      <link>https://community.qlik.com/t5/QlikView/join-problem/m-p/159950#M34392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Easier to do it this way?:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;Order:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; OID, Article, CID&lt;BR /&gt; 1, 23442,1&lt;BR /&gt; 2, 55321,2&lt;BR /&gt; 3, 31331,2&lt;BR /&gt; 4, 41536,3&lt;BR /&gt;];&lt;BR /&gt;Join LOAD * INLINE [&lt;BR /&gt; CID, Name, Prename&lt;BR /&gt; 1, Jones, Henry&lt;BR /&gt; 2, Presley, Elvis&lt;BR /&gt; 3, Fogerty, John&lt;BR /&gt;];&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Stephen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 18:40:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/join-problem/m-p/159950#M34392</guid>
      <dc:creator>stephencredmond</dc:creator>
      <dc:date>2009-08-18T18:40:16Z</dc:date>
    </item>
    <item>
      <title>join problem</title>
      <link>https://community.qlik.com/t5/QlikView/join-problem/m-p/159951#M34393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stephen's answer is quite correct. and, the simpler the script - less errors... I only want to explain why the code is "not working".&lt;BR /&gt;This part does not create new JTable because the field names are exactly the same as in Order table.&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;JTable:&lt;BR /&gt;Load&lt;BR /&gt; OID,&lt;BR /&gt; Article,&lt;BR /&gt; CID&lt;BR /&gt;Resident Order;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;Instead it is autoconcatenated with the Order table. And, later you drop Order. an get nothing. &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2009 09:36:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/join-problem/m-p/159951#M34393</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-19T09:36:21Z</dc:date>
    </item>
  </channel>
</rss>

