<?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 Create QVD's per year? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-QVD-s-per-year/m-p/239776#M90367</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;Thanks a lot for your quick reply.&lt;/P&gt;&lt;P&gt;When thinking about your example, it makes sense (and even looks obvious behaviour :-)). We'll give this one a try.&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;P&gt;Maarten&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Mar 2011 08:14:16 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-03-07T08:14:16Z</dc:date>
    <item>
      <title>Create QVD's per year?</title>
      <link>https://community.qlik.com/t5/QlikView/Create-QVD-s-per-year/m-p/239774#M90365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dears,&lt;/P&gt;&lt;P&gt;Can one always split a QVD in different parts (i.e. based on year critera) and afterwards gather the QVD's back in one table?&lt;/P&gt;&lt;P&gt;To be concrete:&lt;/P&gt;&lt;P&gt;I have 2 tables: X and Y. Both are extracted in QVD's per year. This results in&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;X_2006.qvd,&lt;/LI&gt;&lt;LI&gt;X_2007.qvd,&lt;/LI&gt;&lt;LI&gt;X_2008.qvd,&lt;/LI&gt;&lt;LI&gt;X_2009.qvd,&lt;/LI&gt;&lt;LI&gt;X_2010.qvd&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;(same for table Y)&lt;/P&gt;&lt;P&gt;We load both tables and their corresponding QVD's using a X_*.qvd and a Y_*.qvd.&lt;/P&gt;&lt;P&gt;Now, when performing a left join between both tables (Y: left join X), Only Y data from 2006 is merged.&lt;/P&gt;&lt;P&gt;Now, when not performing a left join (just creating the link between) between both tables (Y: left join X), all data is available as it should be.&lt;/P&gt;&lt;P&gt;Both tables are mapped one on one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ps: When only loading per period (remove the *, and change it in i.e. 2007), the correct data is loaded as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas what could create this difference?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Maarten&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Mar 2011 15:37:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-QVD-s-per-year/m-p/239774#M90365</guid>
      <dc:creator />
      <dc:date>2011-03-04T15:37:10Z</dc:date>
    </item>
    <item>
      <title>Create QVD's per year?</title>
      <link>https://community.qlik.com/t5/QlikView/Create-QVD-s-per-year/m-p/239775#M90366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you do a file wildcard load, the files are loaded one at a time. After the first Y file is loaded, unmatched rows of X will have all Y fields -- with null values. Thereafter the new fields will be involved in the join and never match. For example.&lt;/P&gt;&lt;P&gt;TabX:&lt;BR /&gt;Key, ValueX&lt;BR /&gt;1, A&lt;BR /&gt;2, B&lt;BR /&gt;3, C&lt;/P&gt;&lt;P&gt;Y2006.qvd&lt;BR /&gt;Key, ValueY&lt;BR /&gt;1, X&lt;BR /&gt;&lt;BR /&gt;Y2007.qvd&lt;BR /&gt;Key, ValueY&lt;BR /&gt;2, Y&lt;BR /&gt;3, Z&lt;/P&gt;&lt;P&gt;LEFT JOIN (TabX) LOAD * FROM Y2006.qvd (qvd); gives&lt;/P&gt;&lt;P&gt;TabX:&lt;BR /&gt;Key, ValueX, ValueY&lt;BR /&gt;1, A, X&lt;BR /&gt;2, B, -&lt;BR /&gt;3, C, -&lt;/P&gt;&lt;P&gt;Thereafter, a join of Y2007.qvd will match no rows because matching Key rows have the unmatching ValueY=- .&lt;/P&gt;&lt;P&gt;The only way to do this is to load all Y*.tables and then JOIN from the RESIDENT table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Mar 2011 23:31:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-QVD-s-per-year/m-p/239775#M90366</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2011-03-04T23:31:37Z</dc:date>
    </item>
    <item>
      <title>Create QVD's per year?</title>
      <link>https://community.qlik.com/t5/QlikView/Create-QVD-s-per-year/m-p/239776#M90367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;Thanks a lot for your quick reply.&lt;/P&gt;&lt;P&gt;When thinking about your example, it makes sense (and even looks obvious behaviour :-)). We'll give this one a try.&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;P&gt;Maarten&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2011 08:14:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-QVD-s-per-year/m-p/239776#M90367</guid>
      <dc:creator />
      <dc:date>2011-03-07T08:14:16Z</dc:date>
    </item>
  </channel>
</rss>

