<?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: Store procedures with very different storing time in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107680#M7348</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ciao Massimo,&lt;/P&gt;&lt;P&gt;your loop is faster than my intial loop (it takes 20 minutes to store my QVDs) but is not as fast as specify the store and drop for each table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But 20 minutes are a great result compared to my 50mins!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Sep 2018 14:58:47 GMT</pubDate>
    <dc:creator>micheledenardi</dc:creator>
    <dc:date>2018-09-28T14:58:47Z</dc:date>
    <item>
      <title>Store procedures with very different storing time</title>
      <link>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107673#M7341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;by using QlikSense June 2018 today i'm facing a problem about Store funcition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I noticed a very important time difference between these two store approches:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By using this scritp my 120 QVDs (~16Gb) are stored in 50 minutues:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_15378872576876086" jivemacro_uid="_15378872576876086"&gt;
&lt;P&gt;let numTables = NoOfTables();&lt;/P&gt;
&lt;P&gt;for i=0 to $(numTables)-1&lt;/P&gt;
&lt;P&gt;let tt = TableName(i);&lt;/P&gt;
&lt;P&gt;Store $(tt) into $(vStoreQvdPath)$(tt).qvd (qvd);&lt;/P&gt;
&lt;P&gt;next&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;let numTables = NoOfTables();&lt;/P&gt;
&lt;P&gt;for i=1 to $(numTables)&lt;/P&gt;
&lt;P&gt;let tt = TableName(0);&lt;/P&gt;
&lt;P&gt;drop table [$(tt)];&lt;/P&gt;
&lt;P&gt;next&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By using the "classic" approach (with the same data) my 1&lt;SPAN style="font-size: 13.3333px;"&gt;20 QVDs (~16Gb) &lt;/SPAN&gt;are stored in only 7 minutes:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15378873378324743 jive_text_macro" jivemacro_uid="_15378873378324743"&gt;
&lt;P&gt;Store tab1 into [lib://BaseFolder/]tab1.qvd(qvd);&lt;/P&gt;
&lt;P&gt;Drop table tab1;&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;Store tab2 into [lib://BaseFolder/]tab2.qvd(qvd);&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;Drop table tab2;&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;Store tab3 into [lib://BaseFolder/]tab3.qvd(qvd);&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;Drop table tab3;&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;.........&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;.........&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;.........&lt;/SPAN&gt;&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would prefer to use the first approach but this difference in terms of "storing time" is very important and it's driving me to use the second approach.&lt;/P&gt;&lt;P&gt;Can anyone explain to me why exists this difference ?&lt;/P&gt;&lt;P&gt;Does exists a faster solution to store QVDs without explicit every tabname ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2018 15:08:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107673#M7341</guid>
      <dc:creator>micheledenardi</dc:creator>
      <dc:date>2018-09-25T15:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: Store procedures with very different storing time</title>
      <link>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107674#M7342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The difference must be that in v2 you drop after you store. In v1 you store all THEN drop all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try dropping after storing all in the same loop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2018 15:35:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107674#M7342</guid>
      <dc:creator>joseph_eftamand</dc:creator>
      <dc:date>2018-09-25T15:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: Store procedures with very different storing time</title>
      <link>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107675#M7343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've already tried that way but nothing changes.&lt;/P&gt;&lt;P&gt;It seems that the "for" loop is slowing down the store.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2018 08:12:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107675#M7343</guid>
      <dc:creator>micheledenardi</dc:creator>
      <dc:date>2018-09-26T08:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: Store procedures with very different storing time</title>
      <link>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107676#M7344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think that the loop caused this delay. Of course a loop will add some overhead but usually it are just a few milliseconds which is quite signficantly by a very high number of iterations but by just 2 * 120 (store &amp;amp; drop) it should not very noticeable. Even if you assumed 1 second per iteration it would be just 4 minutes of delaying and not 43 minutes like in your description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This means the reason must be elsewhere and it could be that there is just not enough RAM available so that a dropping of the tables within the store-loop might help. Further make sure that $(vStoreQvdPath) means the same folder like lib://BaseFolder. Also check that there no further actions to your server/machine and storage which might impact such a comparing.&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, 26 Sep 2018 13:32:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107676#M7344</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-09-26T13:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Store procedures with very different storing time</title>
      <link>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107677#M7345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ciao Marcus,&lt;/P&gt;&lt;P&gt;the ram comsuption is always under 20% so i don't think the problem is on this parameter.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;$(vStoreQvdPath) is the same folder of &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;lib://BaseFolder.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;I'm sure that there are no futher actions which can affect the server performance (we have a clustered structure and we are performing these test only on the reload note which has no other running task during these tests).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2018 08:42:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107677#M7345</guid>
      <dc:creator>micheledenardi</dc:creator>
      <dc:date>2018-09-27T08:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: Store procedures with very different storing time</title>
      <link>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107678#M7346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this, 1 loop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let numTables = NoOfTables();&amp;nbsp; &lt;/P&gt;&lt;P&gt;for i=$(numTables)-1 to 0 step -1&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let tt = TableName(i); &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; trace i=$(i) table $(tt) ; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Store $(tt) into $(vStoreQvdPath)$(tt).qvd (qvd);&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; trace ***** store $(tt); &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drop table [$(tt)];&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; trace ***** drop $(tt);&lt;/P&gt;&lt;P&gt;next&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2018 09:04:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107678#M7346</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2018-09-27T09:04:12Z</dc:date>
    </item>
    <item>
      <title>Re: Store procedures with very different storing time</title>
      <link>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107679#M7347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In addition to the suggestion from Massimo you could add a time measurement before starting the loop and before and after the store- and drop-statements to see if there is anything noticeable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While writing this I remember another issue by creating qvd's within a loop, see: &lt;A href="https://community.qlik.com/message/1347830"&gt;Re: Increasing QVD sizes when loading and storing in a long loop&lt;/A&gt; but by just 120 iterations it seems rather unlikely to me that it caused such a delay.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2018 09:28:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107679#M7347</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-09-27T09:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: Store procedures with very different storing time</title>
      <link>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107680#M7348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ciao Massimo,&lt;/P&gt;&lt;P&gt;your loop is faster than my intial loop (it takes 20 minutes to store my QVDs) but is not as fast as specify the store and drop for each table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But 20 minutes are a great result compared to my 50mins!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2018 14:58:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107680#M7348</guid>
      <dc:creator>micheledenardi</dc:creator>
      <dc:date>2018-09-28T14:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: Store procedures with very different storing time</title>
      <link>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107681#M7349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ciao&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried with 3 tables,2 fields, 100M rows each table, 2.4GB qvd for 1 table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script is below and the result (for loop vs store and drop) is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;t1 (row-based qvd optimized) 100.000.000 Lines fetched&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;t2 (row-based qvd optimized) 100.000.000 Lines fetched&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;t3 (row-based qvd optimized) 100.000.000 Lines fetched&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="color: #0000ff;"&gt;***** START 28/09/2018 18:11:32&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="color: #0000ff;"&gt;***** END 28/09/2018 18:12:36&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;t1 (row-based qvd optimized) 100.000.000 Lines fetched&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;t2 (row-based qvd optimized) 100.000.000 Lines fetched&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;t3 (row-based qvd optimized) 100.000.000 Lines fetched&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="color: #0000ff;"&gt;***** START 28/09/2018 18:14:47&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="color: #0000ff;"&gt;***** END 28/09/2018 18:15:52&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no difference in time elapsed (1:04 vs 1:05)&lt;/P&gt;&lt;P&gt;the second one is the for loop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//// test data&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//let n = now(); &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//trace $(n);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//t1:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//noconcatenate load&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;// rand()*100, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;// rand()*1000&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//AutoGenerate 100000000;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//store t1 into t1.qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//rename table t1 to t2;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//store t2 into t2.qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//rename table t2 to t3;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//store t3 into t3.qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//drop table t3;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//let n = now(); &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//trace $(n);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;// test 1 store and drop&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;noconcatenate load * from t1.qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;noconcatenate load * from t2.qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;noconcatenate load * from t3.qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;let n = now(); &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;trace ***** START $(n);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;store t1 into t1.qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;drop table t1;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;store t2 into t2.qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;drop table t2;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;store t3 into t3.qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;drop table t3;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;let n = now(); &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;trace ***** END $(n);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;// test 2 for loop&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;noconcatenate load * from t1.qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;noconcatenate load * from t2.qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;noconcatenate load * from t3.qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;let n = now(); &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;trace ***** START $(n);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;let numTables = 3;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;for i=$(numTables)-1 to 0 step -1 &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; let tt = TableName(i);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; trace i=$(i) table $(tt) ;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Store $(tt) into $(tt).qvd (qvd); &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; trace ***** store $(tt);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; drop table [$(tt)]; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; trace ***** drop $(tt);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;next &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;let n = now(); &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;trace ***** END $(n);&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2018 16:17:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Store-procedures-with-very-different-storing-time/m-p/107681#M7349</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2018-09-28T16:17:58Z</dc:date>
    </item>
  </channel>
</rss>

