<?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: record count is different when stored in qvd in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/record-count-is-different-when-stored-in-qvd/m-p/1663536#M729806</link>
    <description>&lt;P&gt;Thanks for quick response&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/14931"&gt;@jonathandienst&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;But that still does not explain why I am seeing different number of records when I put same table in table object on sheet/UI vs when I store it in another qvd i.e. final.qvd.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It should have same number of records in both cases right? correct me if I am wrong.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 08 Jan 2020 06:55:33 GMT</pubDate>
    <dc:creator>dhirajkhodade</dc:creator>
    <dc:date>2020-01-08T06:55:33Z</dc:date>
    <item>
      <title>record count is different when stored in qvd</title>
      <link>https://community.qlik.com/t5/QlikView/record-count-is-different-when-stored-in-qvd/m-p/1663523#M729804</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to use left join in qlik view like given below&lt;/P&gt;&lt;P&gt;Trades:&lt;BR /&gt;LOAD&lt;/P&gt;&lt;P&gt;a,b,c,d&lt;/P&gt;&lt;P&gt;From abc.qvd (qvd);&amp;nbsp; //it have 85000 records&amp;nbsp;&lt;/P&gt;&lt;P&gt;left Join (Trades)&lt;BR /&gt;LOAD&lt;BR /&gt;a,z&lt;/P&gt;&lt;P&gt;From xyz.qvd (qvd); //it has 3,00,000 records which has all the records from abc.qvd&lt;/P&gt;&lt;P&gt;Store Trades into final.qvd;&lt;/P&gt;&lt;P&gt;When I put Trades table in table object on qvw UI it gives me expected result that is all the records from abc.qvd along with new field i.e. z from xyz.qvd and total record count is 85000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but when I load all the records from final.qvd in another qvw I am getting some weired number of records which are not equal to 85000 or 3,00,000&amp;nbsp;&lt;/P&gt;&lt;P&gt;why is this happening ??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 01:34:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/record-count-is-different-when-stored-in-qvd/m-p/1663523#M729804</guid>
      <dc:creator>dhirajkhodade</dc:creator>
      <dc:date>2024-11-16T01:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: record count is different when stored in qvd</title>
      <link>https://community.qlik.com/t5/QlikView/record-count-is-different-when-stored-in-qvd/m-p/1663532#M729805</link>
      <description>&lt;P&gt;If the values of the associated field (a) are not unique in xyz.qvd, then that will cause rows to be replicated when joining. The left join means that only the records that have an existing a value (from abc.qvd) will be loaded.&lt;/P&gt;&lt;P&gt;So if you have non-unique values of a in xyz.qvd, you can expect to get a final result of at least less than 85k rows and not more than 3 084 999 rows.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2020 06:47:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/record-count-is-different-when-stored-in-qvd/m-p/1663532#M729805</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2020-01-08T06:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: record count is different when stored in qvd</title>
      <link>https://community.qlik.com/t5/QlikView/record-count-is-different-when-stored-in-qvd/m-p/1663536#M729806</link>
      <description>&lt;P&gt;Thanks for quick response&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/14931"&gt;@jonathandienst&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;But that still does not explain why I am seeing different number of records when I put same table in table object on sheet/UI vs when I store it in another qvd i.e. final.qvd.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It should have same number of records in both cases right? correct me if I am wrong.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2020 06:55:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/record-count-is-different-when-stored-in-qvd/m-p/1663536#M729806</guid>
      <dc:creator>dhirajkhodade</dc:creator>
      <dc:date>2020-01-08T06:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: record count is different when stored in qvd</title>
      <link>https://community.qlik.com/t5/QlikView/record-count-is-different-when-stored-in-qvd/m-p/1663567#M729807</link>
      <description>&lt;P&gt;Is there any tables with the same columns in final.qvd table?&lt;/P&gt;&lt;P&gt;I think your final table has auto-concatenated with another table in your final qvw.&lt;/P&gt;&lt;P&gt;To avoid this, try:&lt;/P&gt;&lt;P&gt;noconcatenate&lt;/P&gt;&lt;P&gt;Final:&lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;from&amp;nbsp;&lt;SPAN&gt;final.qvd;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2020 08:00:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/record-count-is-different-when-stored-in-qvd/m-p/1663567#M729807</guid>
      <dc:creator>Arthur_Fong</dc:creator>
      <dc:date>2020-01-08T08:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: record count is different when stored in qvd</title>
      <link>https://community.qlik.com/t5/QlikView/record-count-is-different-when-stored-in-qvd/m-p/1663569#M729808</link>
      <description>&lt;P&gt;No there are no tables other than final.qvd data because I am loading it in new qvw for testing.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2020 08:02:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/record-count-is-different-when-stored-in-qvd/m-p/1663569#M729808</guid>
      <dc:creator>dhirajkhodade</dc:creator>
      <dc:date>2020-01-08T08:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: record count is different when stored in qvd</title>
      <link>https://community.qlik.com/t5/QlikView/record-count-is-different-when-stored-in-qvd/m-p/1663574#M729809</link>
      <description>&lt;P&gt;Can you try ApplyMap instead of left join?&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2020 08:09:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/record-count-is-different-when-stored-in-qvd/m-p/1663574#M729809</guid>
      <dc:creator>Arthur_Fong</dc:creator>
      <dc:date>2020-01-08T08:09:03Z</dc:date>
    </item>
    <item>
      <title>Re: record count is different when stored in qvd</title>
      <link>https://community.qlik.com/t5/QlikView/record-count-is-different-when-stored-in-qvd/m-p/1672705#M729810</link>
      <description>&lt;P&gt;Just wanted to give you a Design Blog post on what Arthur mentioned that may be of some help:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Don-t-join-use-Applymap-instead/ba-p/1467592" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Don-t-join-use-Applymap-instead/ba-p/1467592&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2020 21:00:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/record-count-is-different-when-stored-in-qvd/m-p/1672705#M729810</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2020-02-05T21:00:28Z</dc:date>
    </item>
  </channel>
</rss>

