<?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 binary load: drop table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/binary-load-drop-table/m-p/146381#M24962</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey together,&lt;/P&gt;&lt;P&gt;I'm new here and also working with QlikView is new for me.&lt;/P&gt;&lt;P&gt;I created a qvw-file and now I'm using it with binary-load in a report. Now I want to exclude some rows of one table. So I decided to load that table with resident like:&lt;/P&gt;&lt;P&gt;table_new:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;RESIDENT table_old&lt;/P&gt;&lt;P&gt;WHERE &lt;EM&gt;condition&lt;/EM&gt;;&lt;/P&gt;&lt;P&gt;DROP table_old;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Problme is that neither &lt;EM&gt;table_old&lt;/EM&gt; nor &lt;EM&gt;table_new&lt;/EM&gt; is now available. In the Table-Viewer all other tables are shown.&lt;/P&gt;&lt;P&gt;So I'm not sure if it's possible to drop tables or resident load from binary-loads or if I doing wrong. Someone an idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Jun 2009 21:52:43 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-06-09T21:52:43Z</dc:date>
    <item>
      <title>binary load: drop table</title>
      <link>https://community.qlik.com/t5/QlikView/binary-load-drop-table/m-p/146381#M24962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey together,&lt;/P&gt;&lt;P&gt;I'm new here and also working with QlikView is new for me.&lt;/P&gt;&lt;P&gt;I created a qvw-file and now I'm using it with binary-load in a report. Now I want to exclude some rows of one table. So I decided to load that table with resident like:&lt;/P&gt;&lt;P&gt;table_new:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;RESIDENT table_old&lt;/P&gt;&lt;P&gt;WHERE &lt;EM&gt;condition&lt;/EM&gt;;&lt;/P&gt;&lt;P&gt;DROP table_old;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Problme is that neither &lt;EM&gt;table_old&lt;/EM&gt; nor &lt;EM&gt;table_new&lt;/EM&gt; is now available. In the Table-Viewer all other tables are shown.&lt;/P&gt;&lt;P&gt;So I'm not sure if it's possible to drop tables or resident load from binary-loads or if I doing wrong. Someone an idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 21:52:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/binary-load-drop-table/m-p/146381#M24962</guid>
      <dc:creator />
      <dc:date>2009-06-09T21:52:43Z</dc:date>
    </item>
    <item>
      <title>binary load: drop table</title>
      <link>https://community.qlik.com/t5/QlikView/binary-load-drop-table/m-p/146382#M24963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In QV, when you load the data from one tale to another, try to make at least one field different, otherwise QlikView assumes it to be the same table.&lt;/P&gt;&lt;P&gt;So, if you do the following, it will work:&lt;/P&gt;&lt;P&gt;table_new:&lt;/P&gt;&lt;P&gt;Load 1 as tmpID,*&lt;/P&gt;&lt;P&gt;Resident table_old&lt;/P&gt;&lt;P&gt;WHERE Condition;&lt;/P&gt;&lt;P&gt;Drop table_old;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 22:42:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/binary-load-drop-table/m-p/146382#M24963</guid>
      <dc:creator />
      <dc:date>2009-06-09T22:42:43Z</dc:date>
    </item>
    <item>
      <title>binary load: drop table</title>
      <link>https://community.qlik.com/t5/QlikView/binary-load-drop-table/m-p/146383#M24964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another option is to explicitly tell QlikView that they aren't the same table with noconcatenate:&lt;/P&gt;&lt;P&gt;table_new:&lt;BR /&gt;&lt;STRONG&gt;NOCONCATENATE&lt;/STRONG&gt; LOAD *&lt;BR /&gt;RESIDENT table_old&lt;BR /&gt;WHERE condition;&lt;BR /&gt;DROP table_old;&lt;/P&gt;&lt;P&gt;And if your condition is simple enough, like Status = 'Active' or Status = 'On Hold', something like this should execute MUCH faster and with less memory than building a new table:&lt;/P&gt;&lt;P&gt;INNER JOIN LOAD * INLINE [&lt;BR /&gt;Status&lt;BR /&gt;Active&lt;BR /&gt;On Hold&lt;BR /&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 04:15:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/binary-load-drop-table/m-p/146383#M24964</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-06-10T04:15:40Z</dc:date>
    </item>
  </channel>
</rss>

