<?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: Incremental load problem in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/506953#M687691</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Again you are fetching data from Qvd ...my question is again your are fetching data from 1GB of records then it may decrease performence .&lt;/P&gt;&lt;P&gt;step1:&lt;/P&gt;&lt;P&gt;Tab:&lt;/P&gt;&lt;P&gt;load * from &lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;Store Tab into .....BC.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step2:&lt;/P&gt;&lt;P&gt;Tab1:&lt;/P&gt;&lt;P&gt;load * from BC.qvd(qvd)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to avoid step2 ...how can i do this ... is this posible or not ... &lt;/P&gt;&lt;P&gt;Can we use peek() function at the time of data loading or not ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you soumya &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Nov 2013 07:39:46 GMT</pubDate>
    <dc:creator>sasikanth</dc:creator>
    <dc:date>2013-11-29T07:39:46Z</dc:date>
    <item>
      <title>Incremental load problem</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/506950#M687688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Can some one please explain me about optimization of incremental load.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what i am doing is .. creating a QVD and fetching again data from that QVD into temp table for sorting of timestamp column .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if that qvd is 1 GB then if you run the script then ... two times u need to load these 1 GB of records ..Thats very bad ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i avoid this ...&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;Thanks in advance &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Nov 2013 06:44:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/506950#M687688</guid>
      <dc:creator>sasikanth</dc:creator>
      <dc:date>2013-11-29T06:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load problem</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/506951#M687689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;you can use&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load * abc&lt;/P&gt;&lt;P&gt;from qvd;&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;Load * xyz&lt;/P&gt;&lt;P&gt;from Excel/qvd Where not exists(Timestamp);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Store table Table1 into qvd(QVD);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will load only those from qvd whose timestamps are different from the other qvd.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Nov 2013 07:18:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/506951#M687689</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2013-11-29T07:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load problem</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/506952#M687690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: 20px; color: #747474; font-family: 'PT Sans', Arial, Helvetica, sans-serif;"&gt;ome examples of things that will cause a non-optimised load are:&lt;/P&gt;&lt;P style="margin-bottom: 20px; color: #747474; font-family: 'PT Sans', Arial, Helvetica, sans-serif;"&gt;- Adding new fields to the table&lt;BR /&gt;- Deriving new values from a field in the QVD&lt;BR /&gt;- Retrieving a field twice&lt;BR /&gt;- Most WHERE conditions&lt;BR /&gt;- Joining to an existing in memory table&lt;BR /&gt;- Loading data into a mapping table&lt;/P&gt;&lt;P style="margin-bottom: 20px; color: #747474; font-family: 'PT Sans', Arial, Helvetica, sans-serif;"&gt;In contrast the things you are allowed to do are:&lt;/P&gt;&lt;P style="margin-bottom: 20px; color: #747474; font-family: 'PT Sans', Arial, Helvetica, sans-serif;"&gt;- Rename fields&lt;BR /&gt;- Omit fields&lt;BR /&gt;- Do a simple one field WHERE EXISTS on a field returned in the record set&lt;/P&gt;&lt;P style="margin-bottom: 20px; color: #747474; font-family: 'PT Sans', Arial, Helvetica, sans-serif;"&gt;once qvd optimized then go for resident and do any operation that will improve your utilization and performance.&lt;/P&gt;&lt;P style="margin-bottom: 20px; color: #747474; font-family: 'PT Sans', Arial, Helvetica, sans-serif;"&gt;thanks and regards&lt;/P&gt;&lt;P style="margin-bottom: 20px; color: #747474; font-family: 'PT Sans', Arial, Helvetica, sans-serif;"&gt;shiv&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Nov 2013 07:28:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/506952#M687690</guid>
      <dc:creator />
      <dc:date>2013-11-29T07:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load problem</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/506953#M687691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Again you are fetching data from Qvd ...my question is again your are fetching data from 1GB of records then it may decrease performence .&lt;/P&gt;&lt;P&gt;step1:&lt;/P&gt;&lt;P&gt;Tab:&lt;/P&gt;&lt;P&gt;load * from &lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;Store Tab into .....BC.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step2:&lt;/P&gt;&lt;P&gt;Tab1:&lt;/P&gt;&lt;P&gt;load * from BC.qvd(qvd)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to avoid step2 ...how can i do this ... is this posible or not ... &lt;/P&gt;&lt;P&gt;Can we use peek() function at the time of data loading or not ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you soumya &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Nov 2013 07:39:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/506953#M687691</guid>
      <dc:creator>sasikanth</dc:creator>
      <dc:date>2013-11-29T07:39:46Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load problem</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/506954#M687692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats fine siva but i am asking about incremental load optimization ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Nov 2013 07:40:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/506954#M687692</guid>
      <dc:creator>sasikanth</dc:creator>
      <dc:date>2013-11-29T07:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load problem</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/506955#M687693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can refer to this:&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/318991"&gt;http://community.qlik.com/message/318991&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Might be of help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Nov 2013 08:12:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/506955#M687693</guid>
      <dc:creator />
      <dc:date>2013-11-29T08:12:17Z</dc:date>
    </item>
  </channel>
</rss>

