<?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: When to drop tables. (From a RAM perspective) in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/When-to-drop-tables-From-a-RAM-perspective/m-p/1399023#M32479</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I generally drop tables as soon as I am finished with them.&amp;nbsp; For you it may be a tradeoff between code simplicity and RAM consumption.&amp;nbsp; If you are dealing with small tables, by all means drop them at the end if that is easiest.&amp;nbsp; But if you are dealing with large tables in something like an Extract/Store loop, you may find that it's worth the effort to rework your code to drop the tables immediately, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Nov 2017 16:21:44 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2017-11-15T16:21:44Z</dc:date>
    <item>
      <title>When to drop tables. (From a RAM perspective)</title>
      <link>https://community.qlik.com/t5/App-Development/When-to-drop-tables-From-a-RAM-perspective/m-p/1399021#M32477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just wanted to get your thoughts on dropping tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Consider this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When would it be optimal to drop a table? Immediately after it's purpose is served or could we drop all of them at the end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason why I ask is because I've developed a solution (using a subroutine) to automate the process of storing and dropping the tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This subroutine is something that I append at the end of my script. So, the tables &lt;EM&gt;won't drop&lt;/EM&gt; until they reach this part of the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say, hypothetically, I drop the tables immediately after they've served their purpose, would it improve the way RAM charecterstics in anyway? Since, tables are being removed from Cache?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For smaller apps it may not matter but I work for a large enterprise who want to be very &lt;EM&gt;'IT Efficient'. &lt;/EM&gt;So, I was just curious. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know your thoughts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/77808"&gt;mto&lt;/A&gt;‌&lt;A href="https://community.qlik.com/qlik-users/4003"&gt;hic&lt;/A&gt;‌&lt;A href="https://community.qlik.com/qlik-users/27943"&gt;marcus_sommer&lt;/A&gt;‌&lt;A href="https://community.qlik.com/qlik-users/2286"&gt;rwunderlich&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2017 15:50:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/When-to-drop-tables-From-a-RAM-perspective/m-p/1399021#M32477</guid>
      <dc:creator>vkish16161</dc:creator>
      <dc:date>2017-11-15T15:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: When to drop tables. (From a RAM perspective)</title>
      <link>https://community.qlik.com/t5/App-Development/When-to-drop-tables-From-a-RAM-perspective/m-p/1399022#M32478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do quite the same and drop my unneeded tables (and fields and variables) directly before the scripts finished &lt;STRONG style="text-decoration: underline;"&gt;UNLESS&lt;/STRONG&gt; the tables are quite big and I couldn't waste the RAM on this point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2017 16:00:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/When-to-drop-tables-From-a-RAM-perspective/m-p/1399022#M32478</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2017-11-15T16:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: When to drop tables. (From a RAM perspective)</title>
      <link>https://community.qlik.com/t5/App-Development/When-to-drop-tables-From-a-RAM-perspective/m-p/1399023#M32479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I generally drop tables as soon as I am finished with them.&amp;nbsp; For you it may be a tradeoff between code simplicity and RAM consumption.&amp;nbsp; If you are dealing with small tables, by all means drop them at the end if that is easiest.&amp;nbsp; But if you are dealing with large tables in something like an Extract/Store loop, you may find that it's worth the effort to rework your code to drop the tables immediately, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2017 16:21:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/When-to-drop-tables-From-a-RAM-perspective/m-p/1399023#M32479</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2017-11-15T16:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: When to drop tables. (From a RAM perspective)</title>
      <link>https://community.qlik.com/t5/App-Development/When-to-drop-tables-From-a-RAM-perspective/m-p/1399024#M32480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's how I do it as well Marcus.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I was curious as to how Qlik internally works in dropping tables. Even when we use the drop statement would Qlik mark that table as to be dropped &lt;STRONG&gt;but only drops it after the script is finished? &lt;/STRONG&gt;Or does it do a drop right away?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe &lt;A href="https://community.qlik.com/qlik-users/4003"&gt;hic&lt;/A&gt;‌ can comment on this &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2017 16:23:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/When-to-drop-tables-From-a-RAM-perspective/m-p/1399024#M32480</guid>
      <dc:creator>vkish16161</dc:creator>
      <dc:date>2017-11-15T16:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: When to drop tables. (From a RAM perspective)</title>
      <link>https://community.qlik.com/t5/App-Development/When-to-drop-tables-From-a-RAM-perspective/m-p/1399025#M32481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AFAIK it dropped the table immediately. To check it take a look on the taskmanager if its load a bigger table how the RAM increased and also decreased by dropping them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2017 16:30:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/When-to-drop-tables-From-a-RAM-perspective/m-p/1399025#M32481</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2017-11-15T16:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: When to drop tables. (From a RAM perspective)</title>
      <link>https://community.qlik.com/t5/App-Development/When-to-drop-tables-From-a-RAM-perspective/m-p/1399026#M32482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree with Rob, I drop unwanted tables at the earliest opportunity.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2017 16:54:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/When-to-drop-tables-From-a-RAM-perspective/m-p/1399026#M32482</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-15T16:54:55Z</dc:date>
    </item>
  </channel>
</rss>

