<?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: Comparison of two QVDs in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Comparison-of-two-QVDs/m-p/2014649#M83843</link>
    <description>&lt;P&gt;Hi, you can try just to load them together in Qlik and see what rows are different. Load script could look like this, if both QVD have same column names:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;tb1:
LOAD *,
1 as ind_tb1
FROM 1qvd;

JOIN
LOAD *,
1 as ind_tb2
FROM 2qvd;

NoConcatenate
only_unique_rows:
LOAD *
RESIDENT tb1
WHERE ind_tb1&amp;lt;&amp;gt;1 or ind_tb2&amp;lt;&amp;gt;1;

DROP TABLE tb1;&lt;/LI-CODE&gt;
&lt;P&gt;Basically, you load your first QVD and mark each row with indicator to know that it comes from 1QVD. You join second QVD with JOIN, so if rows are identical in both QVD it will merge, if not, it will be separate row. We also add indicator ind_tb2. Now we just reload only unique rows in one of two tables. ind_tb1 and ind_tb2 will show you in witch QVD it is unique.&lt;/P&gt;</description>
    <pubDate>Fri, 09 Dec 2022 07:41:31 GMT</pubDate>
    <dc:creator>justISO</dc:creator>
    <dc:date>2022-12-09T07:41:31Z</dc:date>
    <item>
      <title>Comparison of two QVDs</title>
      <link>https://community.qlik.com/t5/App-Development/Comparison-of-two-QVDs/m-p/2014270#M83821</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I want to compare two QVDs and check which rows have data that is only in one QVD and not in both. I hope someone has an helpfull Idea or nows a tool or website that can do this.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Dec 2022 10:02:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Comparison-of-two-QVDs/m-p/2014270#M83821</guid>
      <dc:creator>bw7</dc:creator>
      <dc:date>2022-12-08T10:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: Comparison of two QVDs</title>
      <link>https://community.qlik.com/t5/App-Development/Comparison-of-two-QVDs/m-p/2014649#M83843</link>
      <description>&lt;P&gt;Hi, you can try just to load them together in Qlik and see what rows are different. Load script could look like this, if both QVD have same column names:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;tb1:
LOAD *,
1 as ind_tb1
FROM 1qvd;

JOIN
LOAD *,
1 as ind_tb2
FROM 2qvd;

NoConcatenate
only_unique_rows:
LOAD *
RESIDENT tb1
WHERE ind_tb1&amp;lt;&amp;gt;1 or ind_tb2&amp;lt;&amp;gt;1;

DROP TABLE tb1;&lt;/LI-CODE&gt;
&lt;P&gt;Basically, you load your first QVD and mark each row with indicator to know that it comes from 1QVD. You join second QVD with JOIN, so if rows are identical in both QVD it will merge, if not, it will be separate row. We also add indicator ind_tb2. Now we just reload only unique rows in one of two tables. ind_tb1 and ind_tb2 will show you in witch QVD it is unique.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Dec 2022 07:41:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Comparison-of-two-QVDs/m-p/2014649#M83843</guid>
      <dc:creator>justISO</dc:creator>
      <dc:date>2022-12-09T07:41:31Z</dc:date>
    </item>
  </channel>
</rss>

