<?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: Reload Structure in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Reload-Structure/m-p/1273313#M26235</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Incremental load,&amp;nbsp; search the term on community..&lt;/P&gt;&lt;P&gt;Just keep the yearly one &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Dec 2016 19:18:08 GMT</pubDate>
    <dc:creator>vinieme12</dc:creator>
    <dc:date>2016-12-02T19:18:08Z</dc:date>
    <item>
      <title>Reload Structure</title>
      <link>https://community.qlik.com/t5/App-Development/Reload-Structure/m-p/1273312#M26234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good afternoon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a project in which our reload structure is like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-everyday a daily qvd is generated.&lt;/P&gt;&lt;P&gt;-everyday a monthly qvd is generated (with the qvds from all days)&lt;/P&gt;&lt;P&gt;-everyday a yearly qvd is generated (with the qvds from all months)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sometimes new fields are added to the DB, which will cause inconsistencies between the qvds (for example if 2016 has field A and 2015 hasn't it will create a new table-1 while reading).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the best practice and faster way to update every qvd without having to re-read every single day from the DB?&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, 02 Dec 2016 18:49:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Reload-Structure/m-p/1273312#M26234</guid>
      <dc:creator>andrefpc</dc:creator>
      <dc:date>2016-12-02T18:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: Reload Structure</title>
      <link>https://community.qlik.com/t5/App-Development/Reload-Structure/m-p/1273313#M26235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Incremental load,&amp;nbsp; search the term on community..&lt;/P&gt;&lt;P&gt;Just keep the yearly one &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2016 19:18:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Reload-Structure/m-p/1273313#M26235</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2016-12-02T19:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: Reload Structure</title>
      <link>https://community.qlik.com/t5/App-Development/Reload-Structure/m-p/1273314#M26236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Several answers depending on your scenario.&lt;/P&gt;&lt;P&gt;1. FieldA exists in 2016 but not 2015.&lt;/P&gt;&lt;P&gt;- Use the Concatenate() keyword when loading QVDs to ensure a single table.&amp;nbsp; FieldA will be null for the 2015 rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. FieldA was added in 2016 and your DBA has populated meaningful values for FieldA in 2015 rows.&lt;/P&gt;&lt;P&gt;- Select FieldA and the PrimaryKey from 2015 and join to the 2015 QVD.&lt;/P&gt;&lt;P&gt;2015Data:&lt;/P&gt;&lt;P&gt;LOAD * FROM 2015.qvd;&lt;/P&gt;&lt;P&gt;LEFT JOIN(2015Data)&lt;/P&gt;&lt;P&gt;SQL SELECT KeyField, FieldA from table;&lt;/P&gt;&lt;P&gt;STORE 2015Data INTO 2015.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2. FieldA was added in 2016 and your DBA has populated a default value for FieldA in 2015 rows.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;- Join a Default value to each 2015 row.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;2015Data:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD * FROM 2015.qvd;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LEFT JOIN(2015Data)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD 'Default' as FieldA AUTOGENERATE 1;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;STORE 2015Data INTO 2015.qvd;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com/" rel="nofollow" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://qlikviewcookbook.com/" rel="nofollow" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2016 19:28:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Reload-Structure/m-p/1273314#M26236</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2016-12-02T19:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Reload Structure</title>
      <link>https://community.qlik.com/t5/App-Development/Reload-Structure/m-p/1273315#M26237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your answers guys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more thing,&lt;/P&gt;&lt;P&gt;Let's say we have data from 2015 and 2016, what's the difference between:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * from 20*.qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * from 2015.qvd&lt;/P&gt;&lt;P&gt;Concatenate(2015)&lt;/P&gt;&lt;P&gt;Load * from 2016.qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once again, thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2016 16:51:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Reload-Structure/m-p/1273315#M26237</guid>
      <dc:creator>andrefpc</dc:creator>
      <dc:date>2016-12-15T16:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: Reload Structure</title>
      <link>https://community.qlik.com/t5/App-Development/Reload-Structure/m-p/1273316#M26238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Load * from 20*.qvd&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;&lt;BR /&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;will produce a single QV table only if all files have the same fields (automatic concatenation).&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;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load * from 2015.qvd&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Concatenate(2015)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load * from 2016.qvd&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Will produce a single table, even if the fields are different (forced concatenation).&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com" rel="nofollow" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://qlikviewcookbook.com" rel="nofollow" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2016 19:15:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Reload-Structure/m-p/1273316#M26238</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2016-12-15T19:15:55Z</dc:date>
    </item>
  </channel>
</rss>

