<?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 Incremental Loading in SQL Database in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Incremental-Loading-in-SQL-Database/m-p/1812121#M66251</link>
    <description>&lt;P&gt;Hi Everyone! Hope you can help me with my dilemma.&lt;/P&gt;&lt;P&gt;We are extracting large tables from a SQL database and we are really experiencing problems since it is now taking almost 24hrs just to load all the tables. So I am exploring incremental loading but I am still building the incremental load script and I upon testing my SQL where clause using a variable doesn't work (I am still extracting the whole table from SQL)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Here is my script:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#808080"&gt;//Get the max date from current table//&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800080"&gt;CurrentQVD_Table&lt;/FONT&gt;:&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;LOAD&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;max&lt;/FONT&gt;(&lt;FONT color="#FF6600"&gt;tmp_date&lt;/FONT&gt;) &lt;FONT color="#0000FF"&gt;as&lt;/FONT&gt; &lt;FONT color="#FF6600"&gt;max_date&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;FROM&lt;/FONT&gt; [$(vRawQVDPath)/CurrentQVD_Table.qvd]&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;(qvd)&lt;/FONT&gt;;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#808080"&gt;//Store in a variable&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;Let&lt;/FONT&gt; vMaxQvdDate = &lt;FONT color="#0000FF"&gt;Date&lt;/FONT&gt;(&lt;FONT color="#0000FF"&gt;Peek&lt;/FONT&gt;(&lt;FONT color="#FF6600"&gt;max_date&lt;/FONT&gt;,0,&lt;FONT color="#FF6600"&gt;WAT&lt;/FONT&gt;),'&lt;FONT color="#008000"&gt;YYYYMMDD&lt;/FONT&gt;');&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#808080"&gt;//Connect to database and extract only where tmp_date &amp;gt; max_date&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;LIB CONNECT TO&lt;/FONT&gt; &lt;FONT color="#008000"&gt;'WAT DB (cimbph_phcc21bj)'&lt;/FONT&gt;;&lt;BR /&gt;&lt;FONT color="#800080"&gt;DB_TableA&lt;/FONT&gt;:&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;LOAD&lt;/FONT&gt; &lt;FONT color="#FF6600"&gt;id,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;`cust_number`,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;`trxn_number`,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;`tmp_date `;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;SQL&lt;/FONT&gt; SELECT id,&lt;BR /&gt;`cust_number`,&lt;BR /&gt;`trxn_number`,&lt;BR /&gt;`tmp_date `&lt;BR /&gt;FROM DB.`DB_TableA`&lt;BR /&gt;where `tmp_date `&amp;gt;&lt;FONT color="#008000"&gt;'$(vMaxQvdDate)'&lt;/FONT&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;Drop Table&lt;/FONT&gt; &lt;FONT color="#800080"&gt;CurrentQVD_Table&lt;/FONT&gt;;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;exit script;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;EM&gt;BTW: I have tried the below variable formula as well:&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;--Let vMaxQvdDate = &lt;FONT color="#FF6600"&gt;max_date&lt;/FONT&gt;;&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 01 Jun 2021 14:45:47 GMT</pubDate>
    <dc:creator>Badzreyes00</dc:creator>
    <dc:date>2021-06-01T14:45:47Z</dc:date>
    <item>
      <title>Incremental Loading in SQL Database</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-Loading-in-SQL-Database/m-p/1812121#M66251</link>
      <description>&lt;P&gt;Hi Everyone! Hope you can help me with my dilemma.&lt;/P&gt;&lt;P&gt;We are extracting large tables from a SQL database and we are really experiencing problems since it is now taking almost 24hrs just to load all the tables. So I am exploring incremental loading but I am still building the incremental load script and I upon testing my SQL where clause using a variable doesn't work (I am still extracting the whole table from SQL)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Here is my script:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#808080"&gt;//Get the max date from current table//&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800080"&gt;CurrentQVD_Table&lt;/FONT&gt;:&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;LOAD&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;max&lt;/FONT&gt;(&lt;FONT color="#FF6600"&gt;tmp_date&lt;/FONT&gt;) &lt;FONT color="#0000FF"&gt;as&lt;/FONT&gt; &lt;FONT color="#FF6600"&gt;max_date&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;FROM&lt;/FONT&gt; [$(vRawQVDPath)/CurrentQVD_Table.qvd]&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;(qvd)&lt;/FONT&gt;;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#808080"&gt;//Store in a variable&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;Let&lt;/FONT&gt; vMaxQvdDate = &lt;FONT color="#0000FF"&gt;Date&lt;/FONT&gt;(&lt;FONT color="#0000FF"&gt;Peek&lt;/FONT&gt;(&lt;FONT color="#FF6600"&gt;max_date&lt;/FONT&gt;,0,&lt;FONT color="#FF6600"&gt;WAT&lt;/FONT&gt;),'&lt;FONT color="#008000"&gt;YYYYMMDD&lt;/FONT&gt;');&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#808080"&gt;//Connect to database and extract only where tmp_date &amp;gt; max_date&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;LIB CONNECT TO&lt;/FONT&gt; &lt;FONT color="#008000"&gt;'WAT DB (cimbph_phcc21bj)'&lt;/FONT&gt;;&lt;BR /&gt;&lt;FONT color="#800080"&gt;DB_TableA&lt;/FONT&gt;:&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;LOAD&lt;/FONT&gt; &lt;FONT color="#FF6600"&gt;id,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;`cust_number`,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;`trxn_number`,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;`tmp_date `;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;SQL&lt;/FONT&gt; SELECT id,&lt;BR /&gt;`cust_number`,&lt;BR /&gt;`trxn_number`,&lt;BR /&gt;`tmp_date `&lt;BR /&gt;FROM DB.`DB_TableA`&lt;BR /&gt;where `tmp_date `&amp;gt;&lt;FONT color="#008000"&gt;'$(vMaxQvdDate)'&lt;/FONT&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;Drop Table&lt;/FONT&gt; &lt;FONT color="#800080"&gt;CurrentQVD_Table&lt;/FONT&gt;;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;exit script;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;EM&gt;BTW: I have tried the below variable formula as well:&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;--Let vMaxQvdDate = &lt;FONT color="#FF6600"&gt;max_date&lt;/FONT&gt;;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 14:45:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-Loading-in-SQL-Database/m-p/1812121#M66251</guid>
      <dc:creator>Badzreyes00</dc:creator>
      <dc:date>2021-06-01T14:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Loading in SQL Database</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-Loading-in-SQL-Database/m-p/1812194#M66261</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;First of all check the syntax of peek function.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;Let&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;vMaxQvdDate =&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#0000FF"&gt;Date&lt;/FONT&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;FONT color="#0000FF"&gt;Peek&lt;/FONT&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;FONT color="#FF6600"&gt;max_date&lt;/FONT&gt;&lt;SPAN&gt;,0,&lt;/SPAN&gt;&lt;FONT color="#FF6600"&gt;WAT&lt;/FONT&gt;&lt;SPAN&gt;),'&lt;/SPAN&gt;&lt;FONT color="#008000"&gt;YYYYMMDD&lt;/FONT&gt;&lt;SPAN&gt;');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Replace this with:&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;Let&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;vMaxQvdDate =&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#0000FF"&gt;Date&lt;/FONT&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;FONT color="#0000FF"&gt;Peek&lt;/FONT&gt;&lt;SPAN&gt;('&lt;/SPAN&gt;&lt;FONT color="#FF6600"&gt;max_date'&amp;nbsp;&lt;/FONT&gt;&lt;SPAN&gt;,0,'&lt;/SPAN&gt;&lt;SPAN&gt;CurrentQVD_Table') ,'&lt;/SPAN&gt;&lt;FONT color="#008000"&gt;YYYYMMDD&lt;/FONT&gt;&lt;SPAN&gt;');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This date format is also confusing. Check the date format in db. This is not a standard one.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Another step is to check scriptlog. What sql query is Send to db?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 17:30:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-Loading-in-SQL-Database/m-p/1812194#M66261</guid>
      <dc:creator>mfchmielowski</dc:creator>
      <dc:date>2021-06-01T17:30:03Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Loading in SQL Database</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-Loading-in-SQL-Database/m-p/1812281#M66280</link>
      <description>&lt;P&gt;Thank you so much&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/46674"&gt;@mfchmielowski&lt;/a&gt;&amp;nbsp;!&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you give me the path of scriptlog?&amp;nbsp;&lt;/P&gt;&lt;P&gt;the date format is the current date format of the tmp_date in db ex. &lt;STRONG&gt;20210602&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;This script below gives me the correct max date = &lt;STRONG&gt;20210530&lt;/STRONG&gt; as value when I tried it, I just applied peek since I saw it in a different post.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800080"&gt;CurrentQVD_Table&lt;/FONT&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;LOAD&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;max&lt;/FONT&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;FONT color="#FF6600"&gt;tmp_date&lt;/FONT&gt;&lt;SPAN&gt;)&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#0000FF"&gt;as&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#FF6600"&gt;max_date&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;FROM&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;[$(vRawQVDPath)/CurrentQVD_Table.qvd]&lt;/SPAN&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;(qvd)&lt;/FONT&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I tried updating my Peek formula but It did not fetch any rows at all &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 06:17:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-Loading-in-SQL-Database/m-p/1812281#M66280</guid>
      <dc:creator>Badzreyes00</dc:creator>
      <dc:date>2021-06-02T06:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Loading in SQL Database</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-Loading-in-SQL-Database/m-p/1812283#M66281</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I dont know your enviroment so&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Knowledge-Base/How-to-find-the-Script-Reload-logs-in-Qlik-Sense-Enterprise/ta-p/1717526" target="_self"&gt;this community post&lt;/A&gt;&amp;nbsp;should be helpfull.&lt;/P&gt;&lt;P&gt;So if this gives you the correct result:&lt;BR /&gt;&lt;FONT color="#800080"&gt;CurrentQVD_Table&lt;/FONT&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;LOAD&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;max&lt;/FONT&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;FONT color="#FF6600"&gt;tmp_date&lt;/FONT&gt;&lt;SPAN&gt;)&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#0000FF"&gt;as&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#FF6600"&gt;max_date&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;FROM&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;[$(vRawQVDPath)/CurrentQVD_Table.qvd]&lt;/SPAN&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;(qvd)&lt;/FONT&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;Let&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;vMaxQvdDate =&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#0000FF"&gt;Date&lt;/FONT&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;FONT color="#0000FF"&gt;Peek&lt;/FONT&gt;&lt;SPAN&gt;('&lt;/SPAN&gt;&lt;FONT color="#FF6600"&gt;max_date'&amp;nbsp;&lt;/FONT&gt;&lt;SPAN&gt;,0,'&lt;/SPAN&gt;&lt;SPAN&gt;CurrentQVD_Table') ,'&lt;/SPAN&gt;&lt;FONT color="#008000"&gt;YYYYMMDD&lt;/FONT&gt;&lt;SPAN&gt;');&lt;BR /&gt;&lt;/SPAN&gt;exit script; // do not load data from sql.&lt;BR /&gt;&lt;BR /&gt;Check the value of variable&amp;nbsp;&lt;SPAN&gt;vMaxQvdDate.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 06:29:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-Loading-in-SQL-Database/m-p/1812283#M66281</guid>
      <dc:creator>mfchmielowski</dc:creator>
      <dc:date>2021-06-02T06:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Loading in SQL Database</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-Loading-in-SQL-Database/m-p/1812300#M66285</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/46674"&gt;@mfchmielowski&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;yes it gives correct date result, but when I apply it in the where clause here:&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;LIB CONNECT TO&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#008000"&gt;'WAT DB (cimbph_phcc21bj)'&lt;/FONT&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;FONT color="#800080"&gt;DB_TableA&lt;/FONT&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;LOAD&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#FF6600"&gt;id,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;`cust_number`,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;`trxn_number`,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;`tmp_date `;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;SQL&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;SELECT id,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;`cust_number`,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;`trxn_number`,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;`tmp_date `&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;FROM DB.`DB_TableA`&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;where `tmp_date `&amp;gt;&lt;/SPAN&gt;&lt;FONT color="#008000"&gt;'$(vMaxQvdDate)'&lt;/FONT&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It still extracts the whole table and not just rows with tmp_date &amp;gt; max_date&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 07:14:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-Loading-in-SQL-Database/m-p/1812300#M66285</guid>
      <dc:creator>Badzreyes00</dc:creator>
      <dc:date>2021-06-02T07:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Loading in SQL Database</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-Loading-in-SQL-Database/m-p/1812307#M66286</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/46674"&gt;@mfchmielowski&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried only using this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;Let&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;vMaxQvdDate = &lt;FONT color="#0000FF"&gt;P&lt;/FONT&gt;&lt;/SPAN&gt;&lt;FONT color="#0000FF"&gt;eek&lt;/FONT&gt;&lt;SPAN&gt;('&lt;/SPAN&gt;&lt;FONT color="#FF6600"&gt;max_date'&amp;nbsp;&lt;/FONT&gt;&lt;SPAN&gt;,0,'&lt;/SPAN&gt;&lt;SPAN&gt;CurrentQVD_Table') &lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;and it works perfectly. Thank you so much! I appreciate your quick response to my concerns.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 07:41:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-Loading-in-SQL-Database/m-p/1812307#M66286</guid>
      <dc:creator>Badzreyes00</dc:creator>
      <dc:date>2021-06-02T07:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Loading in SQL Database</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-Loading-in-SQL-Database/m-p/1812315#M66288</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;Good to hear &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 08:19:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-Loading-in-SQL-Database/m-p/1812315#M66288</guid>
      <dc:creator>mfchmielowski</dc:creator>
      <dc:date>2021-06-02T08:19:25Z</dc:date>
    </item>
  </channel>
</rss>

