<?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: QVD New Monthly files in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/QVD-New-Monthly-files/m-p/878438#M1012277</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;modify this logic accordingly ur needs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/612524"&gt;Re: qvd separation?&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 May 2015 11:40:41 GMT</pubDate>
    <dc:creator>buzzy996</dc:creator>
    <dc:date>2015-05-05T11:40:41Z</dc:date>
    <item>
      <title>QVD New Monthly files</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-New-Monthly-files/m-p/878437#M1012276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have a table which is updated on a monthly basis. On the initial load I need to create a qvd file for each month, for example the month field is FinMonth in this format 201501, 201502 etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do I need to create files called Data201501.qvd, Data201502.qvd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The source data is only updated once a month, but I do not want to recreate the previous months data files continuously, only once there is data for the new month I need to create a new qvd - as I said above this will only happen once per month, so normally early in May we will get values added for April. What is the best way to do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 11:35:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-New-Monthly-files/m-p/878437#M1012276</guid>
      <dc:creator />
      <dc:date>2015-05-05T11:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: QVD New Monthly files</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-New-Monthly-files/m-p/878438#M1012277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;modify this logic accordingly ur needs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/612524"&gt;Re: qvd separation?&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 11:40:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-New-Monthly-files/m-p/878438#M1012277</guid>
      <dc:creator>buzzy996</dc:creator>
      <dc:date>2015-05-05T11:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: QVD New Monthly files</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-New-Monthly-files/m-p/878439#M1012278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't think this is what I really want. I also need to understand auto&lt;/P&gt;&lt;P&gt;naming of files and not a load reload of qvd files. I juts need a first&lt;/P&gt;&lt;P&gt;load of all months from a source into monthly qvd files and thereafter a&lt;/P&gt;&lt;P&gt;check if new data is available, note not on a date modified field but on a&lt;/P&gt;&lt;P&gt;new set of data for an entire month&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 11:57:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-New-Monthly-files/m-p/878439#M1012278</guid>
      <dc:creator />
      <dc:date>2015-05-05T11:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: QVD New Monthly files</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-New-Monthly-files/m-p/878440#M1012279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to have some way to tell when there is new data, and you can then code this logic into the script to make Incremental Loading, checkout the standard help inside the QlikView application on this topic, and some of the community posts on this subject.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you know how to identify the new data such as FinMonth&amp;gt;201502 you can do something roughly like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let NewDataFlag='201502';&lt;/P&gt;&lt;P&gt;//Set your condition to only load the new data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New_Table:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Your_Fields&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Your_Data_Source&lt;/P&gt;&lt;P&gt;WHERE&lt;/P&gt;&lt;P&gt;FinMonth&amp;gt;=$(NewDataFlag);&lt;/P&gt;&lt;P&gt;//Only load your new data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Store New_Table into New_QVD$(NewDataFlag).qvd (QVD);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then set your NewDataFlag to be the last row of the loaded data ready for the next reload.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 13:23:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-New-Monthly-files/m-p/878440#M1012279</guid>
      <dc:creator>peter_turner</dc:creator>
      <dc:date>2015-05-05T13:23:58Z</dc:date>
    </item>
  </channel>
</rss>

