<?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 Compare, Extract &amp; only save delta in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Compare-Extract-only-save-delta/m-p/520295#M194428</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I export a list of paths that contain IDs (which are associated to tif files) to a csv. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IDs look like this: ID00022123 or ID00022124&lt;/P&gt;&lt;P&gt;The path looks like this: \\server\D$\public\ID00022123.tif&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I build this path with the static server string concatenated with the ID I get from a column plus the string '.tif'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the most recent ID is always the highest number when you take those five digits from the right.&lt;/P&gt;&lt;P&gt;In the DB IDs are only added not removed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I want to extract the delta from a previous load. Meaning I only want to export the newly added IDs, overwriting the old entries.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I make this work?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Oct 2013 11:56:32 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-10-24T11:56:32Z</dc:date>
    <item>
      <title>Compare, Extract &amp; only save delta</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-Extract-only-save-delta/m-p/520295#M194428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I export a list of paths that contain IDs (which are associated to tif files) to a csv. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IDs look like this: ID00022123 or ID00022124&lt;/P&gt;&lt;P&gt;The path looks like this: \\server\D$\public\ID00022123.tif&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I build this path with the static server string concatenated with the ID I get from a column plus the string '.tif'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the most recent ID is always the highest number when you take those five digits from the right.&lt;/P&gt;&lt;P&gt;In the DB IDs are only added not removed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I want to extract the delta from a previous load. Meaning I only want to export the newly added IDs, overwriting the old entries.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I make this work?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 11:56:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-Extract-only-save-delta/m-p/520295#M194428</guid>
      <dc:creator />
      <dc:date>2013-10-24T11:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: Compare, Extract &amp; only save delta</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-Extract-only-save-delta/m-p/520296#M194429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Somethinge like this should work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Old:&lt;/P&gt;&lt;P&gt;LOAD ID FROM ID.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New:&lt;/P&gt;&lt;P&gt;NOCONCATENATE &lt;/P&gt;&lt;P&gt;LOAD ID FROM SourceTable WHERE not EXISTS(ID);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE New into ID.qvd (qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 12:00:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-Extract-only-save-delta/m-p/520296#M194429</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-10-24T12:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Compare, Extract &amp; only save delta</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-Extract-only-save-delta/m-p/520297#M194430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What am I doing wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13826877792305047" jivemacro_uid="_13826877792305047"&gt;
&lt;P&gt;OLD:&lt;/P&gt;
&lt;P&gt;//LOAD ID INLINE [&lt;/P&gt;
&lt;P&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; ID&lt;/P&gt;
&lt;P&gt;//&amp;nbsp; ID00033123&lt;/P&gt;
&lt;P&gt;//&amp;nbsp; ID00033124&lt;/P&gt;
&lt;P&gt;//&amp;nbsp; ID00033125&lt;/P&gt;
&lt;P&gt;//];&lt;/P&gt;
&lt;P&gt;//store [OLD] into ID.qvd (qvd);&lt;/P&gt;
&lt;P&gt;LOAD ID FROM ID.qvd (qvd);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;NoConcatenate&lt;/P&gt;
&lt;P&gt;Main:&lt;/P&gt;
&lt;P&gt;LOAD * INLINE [&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ID00033123&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ID00033124&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ID00033125&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ID00066120&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;NEW:&lt;/P&gt;
&lt;P&gt;NoConcatenate&lt;/P&gt;
&lt;P&gt;LOAD ID Resident Main WHERE NOT EXISTS(ID);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;store NEW into ID.qvd (qvd);&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Oct 2013 07:56:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-Extract-only-save-delta/m-p/520297#M194430</guid>
      <dc:creator />
      <dc:date>2013-10-25T07:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: Compare, Extract &amp; only save delta</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-Extract-only-save-delta/m-p/520298#M194431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After your Main table INLINE LOAD, all ID values already exist in the QV data model, so your NEW table load probably results in an empty table, right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Either load the NEW values directly from an external&amp;nbsp; data source, skipping the RESIDENT LOAD, or using it like &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style: inherit; color: black; background-color: inherit; font-size: 9pt !important;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style: inherit; color: black; background-color: inherit; font-size: 9pt !important;"&gt;&lt;EM&gt;NEW:&amp;nbsp; &lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: black; font-size: 9pt !important; background-color: inherit;"&gt;NoConcatenate&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN style="color: black; background-color: inherit; font-size: 9pt !important;"&gt;LOAD ID &lt;/SPAN&gt;&lt;SPAN style="color: black; background-color: inherit; font-size: 9pt !important;"&gt;INLINE [&amp;nbsp; &lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="line-height: 1.5em; color: black; font-size: 9pt;"&gt;ID&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="line-height: 1.5em; color: black; font-size: 9pt;"&gt; &lt;/EM&gt;&lt;SPAN style="color: black; font-size: 9pt; line-height: 1.5em;"&gt;&lt;EM&gt;ID00033123&amp;nbsp; &lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: black; font-size: 9pt !important; background-color: inherit;"&gt;&amp;nbsp; ID00033124&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: black; font-size: 9pt !important; background-color: inherit;"&gt;&amp;nbsp; ID00033125&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: black; font-size: 9pt !important; background-color: inherit;"&gt;&amp;nbsp; ID00066120&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style: inherit; color: black; background-color: inherit; font-size: 9pt !important;"&gt;&lt;EM&gt;];&amp;nbsp; &lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style: inherit; color: black; background-color: inherit; font-size: 9pt !important;"&gt;&lt;EM&gt;WHERE NOT EXISTS(ID);&amp;nbsp; &lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style: inherit; color: black; background-color: inherit; font-size: 9pt !important;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style: inherit; color: black; background-color: inherit; font-size: 9pt !important;"&gt;or using a different field name for MAIN's ID (ID as MAINID) and use exists() with two arguments: ...WHERE NOT EXISTS(ID, MAINID)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style: inherit; color: black; background-color: inherit; font-size: 9pt !important;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Oct 2013 08:09:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-Extract-only-save-delta/m-p/520298#M194431</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-10-25T08:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: Compare, Extract &amp; only save delta</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-Extract-only-save-delta/m-p/520299#M194432</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;Load Main table from Excel/CSV or from database instead of Inline.&amp;nbsp; It will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OLD:&amp;nbsp;&amp;nbsp; &lt;BR /&gt;LOAD ID FROM ID.qvd (qvd);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;NEW:&amp;nbsp;&amp;nbsp; &lt;BR /&gt;NoConcatenate&amp;nbsp;&amp;nbsp; &lt;BR /&gt;LOAD ID &lt;BR /&gt;FROM MaindataFileName &lt;BR /&gt;WHERE NOT EXISTS(ID);&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store NEW into ID.qvd (qvd); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan. &lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Oct 2013 08:14:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-Extract-only-save-delta/m-p/520299#M194432</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-10-25T08:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Compare, Extract &amp; only save delta</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-Extract-only-save-delta/m-p/520300#M194433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I didn't know about the "qvd/csv trick". Now I finally got it working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you both.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Oct 2013 11:06:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-Extract-only-save-delta/m-p/520300#M194433</guid>
      <dc:creator />
      <dc:date>2013-10-25T11:06:26Z</dc:date>
    </item>
  </channel>
</rss>

