<?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: Incremetal Load script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Incremetal-Load-script/m-p/1157148#M377400</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I faced the same issue ..we cant do incremental load without Date and Primary ID We shud have atleast one &lt;/P&gt;&lt;P&gt;if primary ID is not there try with Date.&lt;/P&gt;&lt;P&gt;If you want to do oly insert &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;WHERE NOT exists(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'courier new', courier; color: #3d3d3d;"&gt;PrimaryKey&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;) not needed&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;remove that from script and try t&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Jul 2016 12:38:11 GMT</pubDate>
    <dc:creator>gautik92</dc:creator>
    <dc:date>2016-07-14T12:38:11Z</dc:date>
    <item>
      <title>Incremetal Load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremetal-Load-script/m-p/1157143#M377395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Who can post a simple incremetal load script (insert only)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2016 10:51:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremetal-Load-script/m-p/1157143#M377395</guid>
      <dc:creator>master_student</dc:creator>
      <dc:date>2016-07-14T10:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: Incremetal Load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremetal-Load-script/m-p/1157144#M377396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Help could.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H3&gt;&lt;SPAN style="font-size: 10pt; font-family: 'courier new', courier; text-decoration: underline;"&gt;Insert Only (No Update or Delete)&lt;/SPAN&gt;&lt;/H3&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P class="Code"&gt;&lt;SPAN style="font-style: italic; font-family: 'courier new', courier;"&gt;QV_Table&lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="Code"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;SQL SELECT PrimaryKey, X, Y FROM DB_TABLE&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="Code"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;WHERE ModificationTime &amp;gt;= #$(LastExecTime)#&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="Code"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;AND ModificationTime &amp;lt; #$(BeginningThisExecTime)#;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="Code"&gt;&lt;/P&gt;
&lt;P class="Code"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Concatenate LOAD PrimaryKey, X, Y FROM File.QVD;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="Code"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;STORE QV_Table INTO File.QVD;&lt;/SPAN&gt;&lt;/P&gt;


&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does this help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2016 10:56:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremetal-Load-script/m-p/1157144#M377396</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2016-07-14T10:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: Incremetal Load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremetal-Load-script/m-p/1157145#M377397</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;Hope this is helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will have to use the below statement to get rid of duplicate records.&lt;/P&gt;&lt;P class="Code" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;WHERE NOT exists(&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;PrimaryKey&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="Code" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P class="Code" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: italic; font-family: 'courier new', courier;"&gt;Table1&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="Code" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;SQL SELECT PrimaryKey, A, B, &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;DateTimeField&lt;/SPAN&gt; FROM DataBaseTable&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="Code" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;WHERE DateTimeField &amp;gt;= $(LastExecTime);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="Code"&gt;&lt;/P&gt;
&lt;P class="Code" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;Concatenate LOAD PrimaryKey, A, B, &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;DateTimeField &lt;/SPAN&gt; FROM DestFile.QVD&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="Code" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;WHERE NOT exists(&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;PrimaryKey&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="Code" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;STORE &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px; font-style: italic;"&gt;Table1 &lt;/SPAN&gt;INTO &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;DestFile&lt;/SPAN&gt;.QVD;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2016 11:04:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremetal-Load-script/m-p/1157145#M377397</guid>
      <dc:creator>makrishnaraj</dc:creator>
      <dc:date>2016-07-14T11:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: Incremetal Load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremetal-Load-script/m-p/1157146#M377398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this blog&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/" title="http://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/"&gt;http://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2016 11:06:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremetal-Load-script/m-p/1157146#M377398</guid>
      <dc:creator>gautik92</dc:creator>
      <dc:date>2016-07-14T11:06:01Z</dc:date>
    </item>
    <item>
      <title>Re: Incremetal Load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremetal-Load-script/m-p/1157147#M377399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't have &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;PrimaryKey in my table&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;how to get &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;$(LastExecTime)?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2016 12:33:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremetal-Load-script/m-p/1157147#M377399</guid>
      <dc:creator>master_student</dc:creator>
      <dc:date>2016-07-14T12:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: Incremetal Load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremetal-Load-script/m-p/1157148#M377400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I faced the same issue ..we cant do incremental load without Date and Primary ID We shud have atleast one &lt;/P&gt;&lt;P&gt;if primary ID is not there try with Date.&lt;/P&gt;&lt;P&gt;If you want to do oly insert &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;WHERE NOT exists(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'courier new', courier; color: #3d3d3d;"&gt;PrimaryKey&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;) not needed&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;remove that from script and try t&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2016 12:38:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremetal-Load-script/m-p/1157148#M377400</guid>
      <dc:creator>gautik92</dc:creator>
      <dc:date>2016-07-14T12:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Incremetal Load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremetal-Load-script/m-p/1157149#M377401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;How to get &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px; background-color: #f2f2f2;"&gt;the last updated time &lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'courier new', courier; color: #3d3d3d; background-color: #f2f2f2;"&gt;$(LastExecTime)?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2016 12:46:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremetal-Load-script/m-p/1157149#M377401</guid>
      <dc:creator>master_student</dc:creator>
      <dc:date>2016-07-14T12:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: Incremetal Load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremetal-Load-script/m-p/1157150#M377402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Contact Database Team and tel them to add the Date Field &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jul 2016 04:37:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremetal-Load-script/m-p/1157150#M377402</guid>
      <dc:creator>gautik92</dc:creator>
      <dc:date>2016-07-15T04:37:49Z</dc:date>
    </item>
  </channel>
</rss>

