<?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 Load Only New Records from SQL in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-Only-New-Records-from-SQL/m-p/1357665#M618974</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to load only new records. When I run this script, I get an error, but if I take out the Concatenate, it replaces the old QVD with the new criteria. What am I doing wrong?&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE&lt;/P&gt;&lt;P&gt;LOAD *;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM "GL_Transactions".dbo."GL_Transactions"&lt;/P&gt;&lt;P&gt;where [Transaction Effective Date] &amp;gt;='12/31/2016' ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store GL_Transactions Into ....\qlikview\99.Shared_Folders\2.QVD\2.QVD_Data\GL_Transactions.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop Table GL_Transactions;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 May 2017 18:23:25 GMT</pubDate>
    <dc:creator />
    <dc:date>2017-05-16T18:23:25Z</dc:date>
    <item>
      <title>Load Only New Records from SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Only-New-Records-from-SQL/m-p/1357665#M618974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to load only new records. When I run this script, I get an error, but if I take out the Concatenate, it replaces the old QVD with the new criteria. What am I doing wrong?&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE&lt;/P&gt;&lt;P&gt;LOAD *;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM "GL_Transactions".dbo."GL_Transactions"&lt;/P&gt;&lt;P&gt;where [Transaction Effective Date] &amp;gt;='12/31/2016' ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store GL_Transactions Into ....\qlikview\99.Shared_Folders\2.QVD\2.QVD_Data\GL_Transactions.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop Table GL_Transactions;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 May 2017 18:23:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Only-New-Records-from-SQL/m-p/1357665#M618974</guid>
      <dc:creator />
      <dc:date>2017-05-16T18:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Load Only New Records from SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Only-New-Records-from-SQL/m-p/1357666#M618975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post the script for the previously loaded table?&amp;nbsp; I.e., The table you're concatenating to...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the interim, you can try putting the previously loaded table's name in the Concatenate statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate (tablename)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 May 2017 18:33:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Only-New-Records-from-SQL/m-p/1357666#M618975</guid>
      <dc:creator>jcampbell474</dc:creator>
      <dc:date>2017-05-16T18:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: Load Only New Records from SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Only-New-Records-from-SQL/m-p/1357667#M618976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class=""&gt;Concatenate syntax is like this :&lt;/P&gt;&lt;P class=""&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P class=""&gt;concatenate(TableName)&lt;/P&gt;&lt;P class=""&gt;load * From ...&lt;/P&gt;&lt;P class=""&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P class=""&gt;Perhaps this is what you want:&lt;/P&gt;&lt;P class=""&gt;&lt;BR /&gt;GL_Transactions:&lt;/P&gt;&lt;P class=""&gt;Load * from&lt;/P&gt;&lt;P class=""&gt;\qlikview\99.Shared_Folders\2.QVD\2.QVD_Data\GL_Transactions.qvd (qvd);&lt;/P&gt;&lt;P class=""&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P class=""&gt;CONCATENATE(GL_Transactions)&lt;/P&gt;&lt;P class=""&gt;LOAD *;&lt;/P&gt;&lt;P class=""&gt;SQL SELECT *&lt;/P&gt;&lt;P class=""&gt;FROM "GL_Transactions".dbo."GL_Transactions"&lt;/P&gt;&lt;P class=""&gt;where [Transaction Effective Date] &amp;gt;='12/31/2016' ;&lt;/P&gt;&lt;P class=""&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P class=""&gt;store GL_Transactions Into ....\qlikview\99.Shared_Folders\2.QVD\2.QVD_Data\GL_Transactions.qvd (qvd);&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P class=""&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 May 2017 18:33:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Only-New-Records-from-SQL/m-p/1357667#M618976</guid>
      <dc:creator>RSvebeck</dc:creator>
      <dc:date>2017-05-16T18:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: Load Only New Records from SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Only-New-Records-from-SQL/m-p/1357668#M618977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you paste the full script you are running and what is the error you are getting can you screenshot the error ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 May 2017 18:34:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Only-New-Records-from-SQL/m-p/1357668#M618977</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-05-16T18:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: Load Only New Records from SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Only-New-Records-from-SQL/m-p/1357669#M618978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That did it. I didn't want to reload every time from the SQL database, but the code provided only reloads from the QVD which is what I wanted.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 May 2017 18:44:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Only-New-Records-from-SQL/m-p/1357669#M618978</guid>
      <dc:creator />
      <dc:date>2017-05-16T18:44:49Z</dc:date>
    </item>
  </channel>
</rss>

