<?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 RESIDENT Load not working in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/RESIDENT-Load-not-working/m-p/232686#M84281</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your help guys. Funny, I have been working on Qlikview for 4 years now and have never come across that problem.&lt;/P&gt;&lt;P&gt;Anyway, thanks again.&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Jul 2010 14:07:15 GMT</pubDate>
    <dc:creator>wandapec</dc:creator>
    <dc:date>2010-07-27T14:07:15Z</dc:date>
    <item>
      <title>RESIDENT Load not working</title>
      <link>https://community.qlik.com/t5/QlikView/RESIDENT-Load-not-working/m-p/232683#M84278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;I am at my wits end and have no idea what is going on. For some reason RESIDENT load of a previously loaded table is not working in my Qlikview. I have uninstalled and installed the latest version and still the same! It doesn't work in a new QVW or old... Here is a really simple script that didn't work. Is there a setting somewhere that I might have changed? For some reason Qlikview seems to load the data from the Temp table back into itself? Please help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataTemp:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Name,Place,Age&lt;/P&gt;&lt;P&gt;Steve, Here, 23&lt;/P&gt;&lt;P&gt;Mike, There, 34&lt;/P&gt;&lt;P&gt;Alan, Here, 45&lt;/P&gt;&lt;P&gt;Gordon, Here, 56&lt;/P&gt;&lt;P&gt;Richard, There, 34&lt;/P&gt;&lt;P&gt;Jandre, Where, 56&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;People:&lt;/P&gt;&lt;P&gt;LOAD Name,Place,Age&lt;/P&gt;&lt;P&gt;RESIDENT DataTemp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop table DataTemp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Jul 2010 14:50:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/RESIDENT-Load-not-working/m-p/232683#M84278</guid>
      <dc:creator>wandapec</dc:creator>
      <dc:date>2010-07-24T14:50:49Z</dc:date>
    </item>
    <item>
      <title>RESIDENT Load not working</title>
      <link>https://community.qlik.com/t5/QlikView/RESIDENT-Load-not-working/m-p/232684#M84279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This work fine for you.&lt;/P&gt;&lt;P&gt;----------------------------------------------------------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;DataTemp:&lt;BR /&gt;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;&lt;BR /&gt; Name,Place,Age&lt;BR /&gt;&lt;BR /&gt; Steve, Here, 23&lt;BR /&gt;&lt;BR /&gt; Mike, There, 34&lt;BR /&gt;&lt;BR /&gt; Alan, Here, 45&lt;BR /&gt;&lt;BR /&gt; Gordon, Here, 56&lt;BR /&gt;&lt;BR /&gt; Richard, There, 34&lt;BR /&gt;&lt;BR /&gt; Jandre, Where, 56&lt;BR /&gt;&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;People:&lt;BR /&gt;&lt;BR /&gt;LOAD Name as T_Name,Place as T_Place,Age as T_Age&lt;BR /&gt;&lt;BR /&gt;RESIDENT DataTemp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Drop table DataTemp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Jul 2010 15:25:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/RESIDENT-Load-not-working/m-p/232684#M84279</guid>
      <dc:creator>suniljain</dc:creator>
      <dc:date>2010-07-24T15:25:31Z</dc:date>
    </item>
    <item>
      <title>RESIDENT Load not working</title>
      <link>https://community.qlik.com/t5/QlikView/RESIDENT-Load-not-working/m-p/232685#M84280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Steve,&lt;/P&gt;&lt;P&gt;this is a classic case of automatic CONCATENATION. Since your second load consists of exactly the same fields as the first, QlkView automatically concatenates the data into the first table. After the second load, you are left with 12 rows in DataTemp and no "People". Then you drop DataTemp, and you are left with nothing.&lt;/P&gt;&lt;P&gt;To prevent automatic concatenation, use keyword NOCONCATENATE in front of the load:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOCONCATENATE LOAD * RESIDENT Tab1;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV id="refHTML"&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Jul 2010 16:04:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/RESIDENT-Load-not-working/m-p/232685#M84280</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2010-07-24T16:04:03Z</dc:date>
    </item>
    <item>
      <title>RESIDENT Load not working</title>
      <link>https://community.qlik.com/t5/QlikView/RESIDENT-Load-not-working/m-p/232686#M84281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your help guys. Funny, I have been working on Qlikview for 4 years now and have never come across that problem.&lt;/P&gt;&lt;P&gt;Anyway, thanks again.&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jul 2010 14:07:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/RESIDENT-Load-not-working/m-p/232686#M84281</guid>
      <dc:creator>wandapec</dc:creator>
      <dc:date>2010-07-27T14:07:15Z</dc:date>
    </item>
  </channel>
</rss>

