<?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 Problems with resident load and binary! in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problems-with-resident-load-and-binary/m-p/745765#M1053078</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(I loaded the table LT with a binary)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TEP:&lt;/P&gt;&lt;P&gt;LOAD * &lt;/P&gt;&lt;P&gt;RESIDENT LT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LINK_TABLE:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;RESIDENT TEP;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE TEP;&lt;/P&gt;&lt;P&gt;DROP TABLE LT;&lt;/P&gt;&lt;P&gt;EXIT SCRIPT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And when i reload, this text is showed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is happening?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Oct 2014 14:50:37 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-10-31T14:50:37Z</dc:date>
    <item>
      <title>Problems with resident load and binary!</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-resident-load-and-binary/m-p/745765#M1053078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(I loaded the table LT with a binary)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TEP:&lt;/P&gt;&lt;P&gt;LOAD * &lt;/P&gt;&lt;P&gt;RESIDENT LT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LINK_TABLE:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;RESIDENT TEP;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE TEP;&lt;/P&gt;&lt;P&gt;DROP TABLE LT;&lt;/P&gt;&lt;P&gt;EXIT SCRIPT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And when i reload, this text is showed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is happening?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Oct 2014 14:50:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-resident-load-and-binary/m-p/745765#M1053078</guid>
      <dc:creator />
      <dc:date>2014-10-31T14:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with resident load and binary!</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-resident-load-and-binary/m-p/745766#M1053079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeremias,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There's no text attached to your question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nonetheless, viewing the script, the tables are auto-concatenating.&lt;/P&gt;&lt;P&gt;Using "load *" from a resident table (and without "Qualify") will duplicate the records in the initial table LT.&lt;/P&gt;&lt;P&gt;TEP and LINK_TABLE will not be created, thus cannot be dropped.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need to create the tables TEP and LINK_TABLE separately, you'll need to use the "noconcatenate" before loading them:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Noconcatenate&lt;/P&gt;&lt;P&gt;TEP:&lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;resident LT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Noconcatenate&lt;/P&gt;&lt;P&gt;LINK_TABLE:&lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;resident TEP;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is only to explain what's happening.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually, as per your script, you don't need to load TEP and LINK_TABLE (since you're dropping them and without any modification done). But you can judge best according to what your real script may look like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Oct 2014 15:13:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-resident-load-and-binary/m-p/745766#M1053079</guid>
      <dc:creator />
      <dc:date>2014-10-31T15:13:33Z</dc:date>
    </item>
  </channel>
</rss>

