<?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 loading of files incrementally  with filenames in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/loading-of-files-incrementally-with-filenames/m-p/428171#M159571</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to do the loading of files incrementally as i will be getting new .csv files daily which are identified by the file name..&lt;/P&gt;&lt;P&gt;i dont know whether this is doable or not...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) i will create the qvd for the existingf files. then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) i have to create a&amp;nbsp; new qvd file&amp;nbsp; which is not present in the previous qvd files and store that as a new qvd and append that to the old qvd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) so this has to identified by the file name which are&amp;nbsp; loading daily..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i think we have to write a script in such a way that old filenames are&amp;nbsp; stored in a variable and use that variable to compare the new files in the folder and load the new data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so how the script to be written with if condition or something else..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Apr 2013 21:50:11 GMT</pubDate>
    <dc:creator>shree909</dc:creator>
    <dc:date>2013-04-05T21:50:11Z</dc:date>
    <item>
      <title>loading of files incrementally  with filenames</title>
      <link>https://community.qlik.com/t5/QlikView/loading-of-files-incrementally-with-filenames/m-p/428171#M159571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to do the loading of files incrementally as i will be getting new .csv files daily which are identified by the file name..&lt;/P&gt;&lt;P&gt;i dont know whether this is doable or not...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) i will create the qvd for the existingf files. then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) i have to create a&amp;nbsp; new qvd file&amp;nbsp; which is not present in the previous qvd files and store that as a new qvd and append that to the old qvd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) so this has to identified by the file name which are&amp;nbsp; loading daily..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i think we have to write a script in such a way that old filenames are&amp;nbsp; stored in a variable and use that variable to compare the new files in the folder and load the new data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so how the script to be written with if condition or something else..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Apr 2013 21:50:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-of-files-incrementally-with-filenames/m-p/428171#M159571</guid>
      <dc:creator>shree909</dc:creator>
      <dc:date>2013-04-05T21:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: loading of files incrementally  with filenames</title>
      <link>https://community.qlik.com/t5/QlikView/loading-of-files-incrementally-with-filenames/m-p/428172#M159572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unless the size of the csv files makes this impractical I'd first try simply always reload all csv files&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Table1:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;BUFFER load ... &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;from *.csv&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(txt, codepage is 1252, embedded labels);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;STORE Table1 into MyData.qvd;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If that turns out to take too long then you could load all new cvs files and then move the files to a different directory so only the new files will get loaded. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Table1:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Load * from MyData.qvd;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;concatenate(Table1)&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;BUFFER load ... &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;from *.csv&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(txt, codepage is 1252, embedded labels);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;STORE Table1 into MyData.qvd;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;execute cmd.exe /c move d:\datafiles\source\*.csv d:\datafiles\processed\;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Apr 2013 10:03:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-of-files-incrementally-with-filenames/m-p/428172#M159572</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-04-06T10:03:15Z</dc:date>
    </item>
  </channel>
</rss>

