<?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: Identify Data coming from which QVD in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Identify-Data-coming-from-which-QVD/m-p/927721#M981045</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could add an identifier column? Like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'SourceA' as Source&lt;/P&gt;&lt;P&gt;FROM SourceA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you could use QUALIFY *; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Aug 2015 12:11:38 GMT</pubDate>
    <dc:creator>maximiliano_vel</dc:creator>
    <dc:date>2015-08-14T12:11:38Z</dc:date>
    <item>
      <title>Identify Data coming from which QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Identify-Data-coming-from-which-QVD/m-p/927719#M981043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi There&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 3 QVD's. Each QVD has different data sources. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say QVD 1 -Data coming from A Source&lt;/P&gt;&lt;P&gt;Say QVD 2 -Data coming from B Source&lt;/P&gt;&lt;P&gt;Day QVD 2 -Data coming from C Source&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In above QVD files, there is common ID no (Primary Key). When I want to display report along with ID and other QVD columns it should show from which QVD that ID belongs to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Aug 2015 12:08:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identify-Data-coming-from-which-QVD/m-p/927719#M981043</guid>
      <dc:creator>ashishpalkar</dc:creator>
      <dc:date>2015-08-14T12:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: Identify Data coming from which QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Identify-Data-coming-from-which-QVD/m-p/927720#M981044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While loading data from QVD add below in script..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIleName() as FileName&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Aug 2015 12:10:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identify-Data-coming-from-which-QVD/m-p/927720#M981044</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-08-14T12:10:24Z</dc:date>
    </item>
    <item>
      <title>Re: Identify Data coming from which QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Identify-Data-coming-from-which-QVD/m-p/927721#M981045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could add an identifier column? Like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'SourceA' as Source&lt;/P&gt;&lt;P&gt;FROM SourceA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you could use QUALIFY *; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Aug 2015 12:11:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identify-Data-coming-from-which-QVD/m-p/927721#M981045</guid>
      <dc:creator>maximiliano_vel</dc:creator>
      <dc:date>2015-08-14T12:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: Identify Data coming from which QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Identify-Data-coming-from-which-QVD/m-p/927722#M981046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you concatenate the data into one resident table, you can create an additional Source field in your LOAD:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'QVD1' as Source&lt;/P&gt;&lt;P&gt;FROM QVD1.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Aug 2015 12:11:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identify-Data-coming-from-which-QVD/m-p/927722#M981046</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-08-14T12:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: Identify Data coming from which QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Identify-Data-coming-from-which-QVD/m-p/927723#M981047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the update it worked as mentioned above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Aug 2015 20:34:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identify-Data-coming-from-which-QVD/m-p/927723#M981047</guid>
      <dc:creator>ashishpalkar</dc:creator>
      <dc:date>2015-08-14T20:34:42Z</dc:date>
    </item>
  </channel>
</rss>

