<?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 How restrict the OLD QVD values in presentation without stopping its job in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-restrict-the-OLD-QVD-values-in-presentation-without-stopping/m-p/125813#M760610</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Team,&lt;/P&gt;&lt;P&gt;The Scenario i am handing is:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I have a QVD is storing every Monday in weekly bases! &lt;/LI&gt;&lt;LI&gt;In my enhancement project, now i created new QVD and associated columns of old QVD,(Concatenated)&amp;nbsp; my now new QVD will run for every monday!&lt;/LI&gt;&lt;LI&gt;Now, i need to restrict the data of old QVD in my presentation layer.( to avoid duplication in future) if but we should not stop the job of old QVD!&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how restrict the OLD QVD values in presentation without stopping its job! how to restrict it in Script!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide your suggestions!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS,&lt;/P&gt;&lt;P&gt;Ashok Ravichandran, &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>How restrict the OLD QVD values in presentation without stopping its job</title>
      <link>https://community.qlik.com/t5/QlikView/How-restrict-the-OLD-QVD-values-in-presentation-without-stopping/m-p/125813#M760610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Team,&lt;/P&gt;&lt;P&gt;The Scenario i am handing is:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I have a QVD is storing every Monday in weekly bases! &lt;/LI&gt;&lt;LI&gt;In my enhancement project, now i created new QVD and associated columns of old QVD,(Concatenated)&amp;nbsp; my now new QVD will run for every monday!&lt;/LI&gt;&lt;LI&gt;Now, i need to restrict the data of old QVD in my presentation layer.( to avoid duplication in future) if but we should not stop the job of old QVD!&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how restrict the OLD QVD values in presentation without stopping its job! how to restrict it in Script!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide your suggestions!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS,&lt;/P&gt;&lt;P&gt;Ashok Ravichandran, &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-restrict-the-OLD-QVD-values-in-presentation-without-stopping/m-p/125813#M760610</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How restrict the OLD QVD values in presentation without stopping its job</title>
      <link>https://community.qlik.com/t5/QlikView/How-restrict-the-OLD-QVD-values-in-presentation-without-stopping/m-p/125814#M760613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no way to restrict the data from two QVD's But where as you can think to restrict &lt;A href="https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/" title="https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/"&gt;https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If QvdCreatedTime("Path") = Today() Then&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Load * From Old_QVD;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Else&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Here Incremental Load involve&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Table_New:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Load * From Table; // Incremental Load&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Store Table_New into Path.qvd (qvd);&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Load * From New_Old;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;EndIf;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2018 02:53:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-restrict-the-OLD-QVD-values-in-presentation-without-stopping/m-p/125814#M760613</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-08-10T02:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: How restrict the OLD QVD values in presentation without stopping its job</title>
      <link>https://community.qlik.com/t5/QlikView/How-restrict-the-OLD-QVD-values-in-presentation-without-stopping/m-p/125815#M760615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can create a flag in qvd for ex. QVD_Type:- OLD,NEW.&lt;/P&gt;&lt;P&gt;and then in Data model or UI you can filter data according to your created flag of QVD_Type .&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, 10 Aug 2018 05:26:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-restrict-the-OLD-QVD-values-in-presentation-without-stopping/m-p/125815#M760615</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-10T05:26:45Z</dc:date>
    </item>
  </channel>
</rss>

