<?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: Comparing Incremental and Full load QVD's in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Comparing-Incremental-and-Full-load-QVD-s/m-p/1304315#M1250959</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;gt;&lt;/EM&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;EM&gt;however running them successively creates a problem&lt;/EM&gt;&lt;/SPAN&gt;&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;Please be more specific. I don't see any reason from the script you posted. What problem are you experiencing?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;EM&gt;&amp;gt;&amp;gt;Are EXT and FILE stored as variables?&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Yes. Although you don't need the outer loop with EXT. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Apr 2017 07:30:09 GMT</pubDate>
    <dc:creator>jonathandienst</dc:creator>
    <dc:date>2017-04-12T07:30:09Z</dc:date>
    <item>
      <title>Comparing Incremental and Full load QVD's</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-Incremental-and-Full-load-QVD-s/m-p/1304314#M1250957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am comparing Incrementally generated QVD's in one folder to Full load QVD's in another folder.&lt;/P&gt;&lt;P&gt;The problem I have is that I can run the below evaluation script for each folder individually without issue, however running them successively creates a problem. The first script always interferes with the second one. So I run them individually and store the results which are then loaded for analysis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;How can I prevent the first evaluation affecting the second evaluation?&lt;/LI&gt;&lt;LI&gt;Are EXT and FILE stored as variables?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//***Incremental QVD's&lt;/P&gt;&lt;P&gt;//Build a list of all the Incremental Extract QVD's and their respective characteristics&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR Each EXT in 'qvd'&lt;/P&gt;&lt;P&gt;FOR Each FILE in filelist ('$(vIncrementalExtractQVDLocation)'&amp;amp;'*.'&amp;amp;Ext)&lt;/P&gt;&lt;P&gt;FILE:&lt;/P&gt;&lt;P&gt;Load '$(FILE)' as Name,&lt;/P&gt;&lt;P&gt;&amp;nbsp; FileSize( '$(FILE)' ) as Size,&lt;/P&gt;&lt;P&gt;&amp;nbsp; FileTime( '$(FILE)' ) as FileTime,&lt;/P&gt;&lt;P&gt;&amp;nbsp; QvdNoOfFields( '$(FILE)' ) as NoOfFields,&lt;/P&gt;&lt;P&gt;&amp;nbsp; QvdNoOfRecords( '$(FILE)' )&amp;nbsp; as NoOfRecords,&lt;/P&gt;&lt;P&gt;&amp;nbsp; RowNo() as ID&lt;/P&gt;&lt;P&gt;autogenerate 1;&lt;/P&gt;&lt;P&gt;next FILE&lt;/P&gt;&lt;P&gt;next EXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QUALIFY *;&lt;/P&gt;&lt;P&gt;UNQUALIFY QVDName;&lt;/P&gt;&lt;P&gt;I:&lt;/P&gt;&lt;P&gt;load ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp; subfield(subfield(Name,'\',-1),'.',1) as QVDName,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Name,&lt;/P&gt;&lt;P&gt;&amp;nbsp; NoOfRecords,&lt;/P&gt;&lt;P&gt;&amp;nbsp; NoOfFields,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Size,&lt;/P&gt;&lt;P&gt;&amp;nbsp; FileTime&lt;/P&gt;&lt;P&gt;Resident FILE;&lt;/P&gt;&lt;P&gt;UNQUALIFY *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Store I into TableList_Incremental.qvd (qvd);&lt;/P&gt;&lt;P&gt;Drop Tables FILE, I;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//***Full QVD's&lt;/P&gt;&lt;P&gt;//Build a list of all the Full extract QVD's and their respective characteristics&lt;/P&gt;&lt;P&gt;FOR Each EXT in 'qvd'&lt;/P&gt;&lt;P&gt;FOR Each FILE in filelist ('$(vFullExtractQVDLocation)'&amp;amp;'*.'&amp;amp;Ext)&lt;/P&gt;&lt;P&gt;FILE:&lt;/P&gt;&lt;P&gt;Load '$(FILE)' as Name,&lt;/P&gt;&lt;P&gt;&amp;nbsp; FileSize( '$(FILE)' ) as Size,&lt;/P&gt;&lt;P&gt;&amp;nbsp; FileTime( '$(FILE)' ) as FileTime,&lt;/P&gt;&lt;P&gt;&amp;nbsp; QvdNoOfFields( '$(FILE)' ) as NoOfFields,&lt;/P&gt;&lt;P&gt;&amp;nbsp; QvdNoOfRecords( '$(FILE)' )&amp;nbsp; as NoOfRecords,&lt;/P&gt;&lt;P&gt;&amp;nbsp; RowNo() as ID&lt;/P&gt;&lt;P&gt;autogenerate 1;&lt;/P&gt;&lt;P&gt;next FILE&lt;/P&gt;&lt;P&gt;next EXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QUALIFY *;&lt;/P&gt;&lt;P&gt;UNQUALIFY QVDName;&lt;/P&gt;&lt;P&gt;F:&lt;/P&gt;&lt;P&gt;load ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp; subfield(subfield(Name,'\',-1),'.',1) as QVDName,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Name,&lt;/P&gt;&lt;P&gt;&amp;nbsp; NoOfRecords,&lt;/P&gt;&lt;P&gt;&amp;nbsp; NoOfFields,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Size,&lt;/P&gt;&lt;P&gt;&amp;nbsp; FileTime&lt;/P&gt;&lt;P&gt;Resident FILE;&lt;/P&gt;&lt;P&gt;UNQUALIFY *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Store F into TableList_Full.qvd (qvd);&lt;/P&gt;&lt;P&gt;Drop Tables FILE, F;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-Incremental-and-Full-load-QVD-s/m-p/1304314#M1250957</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing Incremental and Full load QVD's</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-Incremental-and-Full-load-QVD-s/m-p/1304315#M1250959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;gt;&lt;/EM&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;EM&gt;however running them successively creates a problem&lt;/EM&gt;&lt;/SPAN&gt;&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;Please be more specific. I don't see any reason from the script you posted. What problem are you experiencing?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;EM&gt;&amp;gt;&amp;gt;Are EXT and FILE stored as variables?&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Yes. Although you don't need the outer loop with EXT. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 07:30:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-Incremental-and-Full-load-QVD-s/m-p/1304315#M1250959</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2017-04-12T07:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing Incremental and Full load QVD's</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-Incremental-and-Full-load-QVD-s/m-p/1304316#M1250965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The first folder evaluation would complete and create a table with all the characteristics of the files in that folder.&lt;/P&gt;&lt;P&gt;When it moved on to the second folder, it started creating a table per file, as opposed to a table for the entire folder contents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Removing&amp;nbsp; the outer loop with EXT&amp;nbsp; as you suggested has resolved the issue. Thank you for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 08:08:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-Incremental-and-Full-load-QVD-s/m-p/1304316#M1250965</guid>
      <dc:creator />
      <dc:date>2017-04-12T08:08:52Z</dc:date>
    </item>
  </channel>
</rss>

