<?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: Data load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Data-load/m-p/315593#M1181245</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;jduenyas wrote:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alas, I do need the other 2 tables on their own and the 3rd one should be separated. &lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;BR /&gt;OK, then do what Lucian suggested, but rename the fields as you load them in, or use QUALIFY to do it automatically.&amp;nbsp; Otherwise, all the fields will connect to each other since they have the same names.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Dec 2011 21:18:19 GMT</pubDate>
    <dc:creator>johnw</dc:creator>
    <dc:date>2011-12-20T21:18:19Z</dc:date>
    <item>
      <title>Data load</title>
      <link>https://community.qlik.com/t5/QlikView/Data-load/m-p/315589#M1181238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to link 2 already loaded tables and create a third table?&lt;/P&gt;&lt;P&gt;The reason is taht one of the tables requires long time to load and I don't want to call it again for another load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a simplified case:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableA:&lt;/P&gt;&lt;P&gt;Load OrderID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; customerName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; QuoteID;&lt;/P&gt;&lt;P&gt;SELECT * &lt;/P&gt;&lt;P&gt;FROM ORDERS;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableB:&lt;/P&gt;&lt;P&gt;Load QuoteDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Amount,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; QuoteID;&lt;/P&gt;&lt;P&gt;SELECT * &lt;/P&gt;&lt;P&gt;FROM QUOTES;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And now what should the structure be to create TableC?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableC:&lt;/P&gt;&lt;P&gt;Load CustomerName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; QuoteDate, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Amount;&lt;/P&gt;&lt;P&gt;Resident TableA INNER JOIN Resident TableB ON TableA.QuoteID = TableB.QuoteID (???)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 20:10:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-load/m-p/315589#M1181238</guid>
      <dc:creator>jduenyas</dc:creator>
      <dc:date>2011-12-20T20:10:59Z</dc:date>
    </item>
    <item>
      <title>Data load</title>
      <link>https://community.qlik.com/t5/QlikView/Data-load/m-p/315590#M1181240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TableC:&lt;/P&gt;&lt;P&gt;noconcatenate LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; CustomerName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; QuoteID&lt;/P&gt;&lt;P&gt;RESIDENT TableA;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inner join (TableC)&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; QuoteID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Amount&lt;/P&gt;&lt;P&gt;RESIDENT TableB; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 20:19:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-load/m-p/315590#M1181240</guid>
      <dc:creator>luciancotea</dc:creator>
      <dc:date>2011-12-20T20:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: Data load</title>
      <link>https://community.qlik.com/t5/QlikView/Data-load/m-p/315591#M1181242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you do nothing, tables A and B will be automatically connected by QuoteID.&amp;nbsp; No need to load table C.&amp;nbsp; If you really want them in a single table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;TableC:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;Load OrderID,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; customerName,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; QuoteID;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;SELECT * &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;FROM ORDERS;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;INNER JOIN (TableC)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;Load QuoteDate,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Amount,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; QuoteID;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;SELECT * &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;FROM QUOTES;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;DROP FIELD QuoteID;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;Edit: And I mean do this INSTEAD of loading tables A and B.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 20:21:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-load/m-p/315591#M1181242</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2011-12-20T20:21:34Z</dc:date>
    </item>
    <item>
      <title>Data load</title>
      <link>https://community.qlik.com/t5/QlikView/Data-load/m-p/315592#M1181244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Jon for your reply.&lt;/P&gt;&lt;P&gt;I follow your positings and figuered I will "hear" from you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alas, I do need the other 2 tables on their own and the 3rd one should be separated. The structure of my data (currently some 35 different tables from many complex views in SQL) are too complex to wade and weed through.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When time is right I believe I should revisit the whole structure and do the right things to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks anyways.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 21:15:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-load/m-p/315592#M1181244</guid>
      <dc:creator>jduenyas</dc:creator>
      <dc:date>2011-12-20T21:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: Data load</title>
      <link>https://community.qlik.com/t5/QlikView/Data-load/m-p/315593#M1181245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;jduenyas wrote:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alas, I do need the other 2 tables on their own and the 3rd one should be separated. &lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;BR /&gt;OK, then do what Lucian suggested, but rename the fields as you load them in, or use QUALIFY to do it automatically.&amp;nbsp; Otherwise, all the fields will connect to each other since they have the same names.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 21:18:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-load/m-p/315593#M1181245</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2011-12-20T21:18:19Z</dc:date>
    </item>
  </channel>
</rss>

