<?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: Incremental Load By String, NVARCHAR, Text Field in Data Movement &amp; Streaming</title>
    <link>https://community.qlik.com/t5/Data-Movement-Streaming/Incremental-Load-By-String-NVARCHAR-Text-Field/m-p/1989541#M493</link>
    <description>&lt;P&gt;I Checked key field and it may change not only numerically , for example:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;PMI16_0000001&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;PSI16_0000001&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 06 Oct 2022 11:07:43 GMT</pubDate>
    <dc:creator>Shako</dc:creator>
    <dc:date>2022-10-06T11:07:43Z</dc:date>
    <item>
      <title>Incremental Load By String, NVARCHAR, Text Field</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Incremental-Load-By-String-NVARCHAR-Text-Field/m-p/1989047#M485</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Is there way to implement incremental load without having Date field and Key column is NVARCHAR. Database is SQL&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to Load only New Rows. No update or Delete is Required&lt;/P&gt;
&lt;P&gt;The field example:&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="100%"&gt;DocNo&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="100%"&gt;PSI16_0000001&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="100%"&gt;PSI16_0000002&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="100%"&gt;PSI16_0001003&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Wed, 19 Mar 2025 23:06:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Incremental-Load-By-String-NVARCHAR-Text-Field/m-p/1989047#M485</guid>
      <dc:creator>Shako</dc:creator>
      <dc:date>2025-03-19T23:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load By String, NVARCHAR, Text Field</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Incremental-Load-By-String-NVARCHAR-Text-Field/m-p/1989057#M487</link>
      <description>&lt;P&gt;Hi, that field looks like a number, if it's always increasing that number you can use it to do the incremental load.&lt;/P&gt;
&lt;P&gt;Loading from qvd the max value will be easy, using Right() or Subfield() to retrieve the higuer value loaded.&lt;/P&gt;
&lt;P&gt;A Where condition should be applied on sql using that value, syntax will depend on the language used by the database, it could be something like: Where Right(DocNo,7)&amp;gt;=$(vHigherValueFromQvd)&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2022 10:51:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Incremental-Load-By-String-NVARCHAR-Text-Field/m-p/1989057#M487</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2022-10-05T10:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load By String, NVARCHAR, Text Field</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Incremental-Load-By-String-NVARCHAR-Text-Field/m-p/1989541#M493</link>
      <description>&lt;P&gt;I Checked key field and it may change not only numerically , for example:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;PMI16_0000001&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;PSI16_0000001&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 11:07:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Incremental-Load-By-String-NVARCHAR-Text-Field/m-p/1989541#M493</guid>
      <dc:creator>Shako</dc:creator>
      <dc:date>2022-10-06T11:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load By String, NVARCHAR, Text Field</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Incremental-Load-By-String-NVARCHAR-Text-Field/m-p/1989610#M496</link>
      <description>&lt;P&gt;At the end the question is, can you identify in some way which records are new based on the data previosly loaded?. If you can do it manually then there is an option to do it automatic,if there is no way you can do it only with the last DocNo then there is not possible.&lt;/P&gt;
&lt;P&gt;If the initial character have a limited combimnations you can do a bucle to load each prefix separatedly. It it will be more dinamic, you can also recognize them while loading the data, do a list, a bucle based ont hat list... but maybe all this extra process makes the incremental load take more time than anormal load.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 13:38:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Incremental-Load-By-String-NVARCHAR-Text-Field/m-p/1989610#M496</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2022-10-06T13:38:48Z</dc:date>
    </item>
  </channel>
</rss>

