<?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 Extract on an database based on Id in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Incremental-Extract-on-an-database-based-on-Id/m-p/766139#M666078</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The join in the SQL statement is executed on the database server and will use almost certainly use an index. So that join should not be very costly. If it is you need to put your database administrator to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But yes, you can do it differently by loading all the records from the OrderLine table into Qlikview and then remove the ones you don't need with a left keep. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Orders:&lt;/P&gt;&lt;P&gt;SQL Select * From OrderHeader Where Date_Order &amp;gt; ...somevalue...;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Keep&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OrderLines:&lt;/P&gt;&lt;P&gt;SQL Select * From OrderLines;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Dec 2014 13:54:32 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2014-12-03T13:54:32Z</dc:date>
    <item>
      <title>Incremental Extract on an database based on Id</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Extract-on-an-database-based-on-Id/m-p/766136#M666075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;Hello, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;i met an problem i would like to implement an incremental extract based on id i loaded before in the Extract script…&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;In fact, I’ve two table an Order Line and Order Header which are rely on an ID_Order_header.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;For the Order Header, there is no problem cause I ve an field&amp;nbsp; Date_Order so I can extract only the data of the day or the month anywhere…. But for the line, I don’t have a Date_Order to implement an incremental so I would like to extract the data of my line Order only for the ID_Order_header I ve extracted before..&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;I don’t know how to do in the SQL part ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;Is Someboby have an idea… &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;Thanks &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2014 09:01:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Extract-on-an-database-based-on-Id/m-p/766136#M666075</guid>
      <dc:creator />
      <dc:date>2014-12-03T09:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Extract on an database based on Id</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Extract-on-an-database-based-on-Id/m-p/766137#M666076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the Date_Order from the Order Header table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT OL.*&lt;/P&gt;&lt;P&gt;FROM OrderHeader OH join OrderLine OL on OH.ID_Order_Header = OL.ID_Order_Header&lt;/P&gt;&lt;P&gt;WHERE OH.Date_Order &amp;gt; ...somevalue...&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2014 09:43:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Extract-on-an-database-based-on-Id/m-p/766137#M666076</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-12-03T09:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Extract on an database based on Id</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Extract-on-an-database-based-on-Id/m-p/766138#M666077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello thanks for the response,&lt;/P&gt;&lt;P&gt;but is there any other methods to use the ID_Order_Header without using an join between the two tables ....&lt;/P&gt;&lt;P&gt;It takes an lot of time ... and i ve an already extracted and loaded in my script and in memory the ID_Order_Hearder....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2014 13:37:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Extract-on-an-database-based-on-Id/m-p/766138#M666077</guid>
      <dc:creator />
      <dc:date>2014-12-03T13:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Extract on an database based on Id</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Extract-on-an-database-based-on-Id/m-p/766139#M666078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The join in the SQL statement is executed on the database server and will use almost certainly use an index. So that join should not be very costly. If it is you need to put your database administrator to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But yes, you can do it differently by loading all the records from the OrderLine table into Qlikview and then remove the ones you don't need with a left keep. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Orders:&lt;/P&gt;&lt;P&gt;SQL Select * From OrderHeader Where Date_Order &amp;gt; ...somevalue...;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Keep&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OrderLines:&lt;/P&gt;&lt;P&gt;SQL Select * From OrderLines;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2014 13:54:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Extract-on-an-database-based-on-Id/m-p/766139#M666078</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-12-03T13:54:32Z</dc:date>
    </item>
  </channel>
</rss>

