<?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 Issue, not fast enough! in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833791#M293338</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your RDBMS, define an index on the three fields that together form your key. Or use an existing PK.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Apr 2015 14:24:09 GMT</pubDate>
    <dc:creator>Peter_Cammaert</dc:creator>
    <dc:date>2015-04-27T14:24:09Z</dc:date>
    <item>
      <title>Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833789#M293336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table that I create a key field by concatenating 3 fields to get a unique string&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem I have is when I use this in a where clause for incremental load, it's very slow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the fastest way to retrieve only the new records from the Database? but using a combination of 3 fields to create a unique ID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I extract the Data into a qvd, I create a temp table and sort by the unique ID, I find the last record and populate into a variable called vLastRecord&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I then attempt to take new data from the database with a where clause like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; where a&amp;amp;b&amp;amp;c &amp;gt; '$(vLastRecord)';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's really slow, Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 14:13:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833789#M293336</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2015-04-27T14:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833790#M293337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you could convert your string key to a numeric key with an approach like autonumber or creates a own numeric key like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;([StoreNumber] * pow(10, 4)) + ([BillNumber] * pow(10, 9)) + [Pos] as [UniqueKey]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which worked for me fast in a where not exists([UniqueKey]).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 14:21:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833790#M293337</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-04-27T14:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833791#M293338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your RDBMS, define an index on the three fields that together form your key. Or use an existing PK.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 14:24:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833791#M293338</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-04-27T14:24:09Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833792#M293339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2 of my 3 fields contain text, so I could have&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABD456789&lt;/P&gt;&lt;P&gt;CDP456789&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do think I could create a unique number using the transaction number?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 14:26:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833792#M293339</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2015-04-27T14:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833793#M293340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If your string-fields have always a certain logic it could work to convert a string-char into a number like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ord(mid(field, 1, 1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But to create so an errorless key is difficult and needs some effort and will fail if the number is to big because qv had some difficulties in handling big numbers. If you could create a such key within database, maybe as a simle ID it wille be probably better.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 14:45:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833793#M293340</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-04-27T14:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833794#M293341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 3 fields are indexed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 14:49:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833794#M293341</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2015-04-27T14:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833795#M293342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's not the same as an index on a composite key.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 15:00:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833795#M293342</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-04-27T15:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833796#M293343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The strings will always have the same logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have added ord, to convert the string to a number to see if that helps speed up the Incremental process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will let you know how I get on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 15:03:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833796#M293343</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2015-04-27T15:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833797#M293344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have you tried creating the key in your db extraction ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have you tried with a hash ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why not use the where not exists ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 15:06:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833797#M293344</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-04-27T15:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833798#M293345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created the key in the extraction, I will try using where not exists and see if that speeds up the process&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 15:16:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833798#M293345</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2015-04-27T15:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833799#M293346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have any timestamp field in your source table to indicate when records were inserted/updated in it? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If yes, then store Max(Timestamp) of each run in a QVD or text file and use the same to perform incremental load&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select * From Table Where Timestamp &amp;gt; Max_Timestamp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 15:31:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833799#M293346</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2015-04-27T15:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833800#M293347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe reduce the complexity of the where cause to just where A &amp;gt; $(variable) (or b or c) depending on what will give the closest to wanted data reduction and deal with the additional information loaded afterwards, obviously cant just concatenate but if this reduces the load time enough the additional processing on it ma be quicker.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 15:42:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833800#M293347</guid>
      <dc:creator>tcullinane</dc:creator>
      <dc:date>2015-04-27T15:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833801#M293348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately I don't have timestamp I can use&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 16:13:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833801#M293348</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2015-04-27T16:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833802#M293349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried where not exists, but it still takes too long to get the new records&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 16:14:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833802#M293349</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2015-04-27T16:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833803#M293350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in that case I would break into pieces to identify where is the actual issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how much times does the sql extraction take&lt;/P&gt;&lt;P&gt;how many rows does the sql output ?&lt;/P&gt;&lt;P&gt;how many rows are currently stored in the QVD ?&lt;/P&gt;&lt;P&gt;I have read that you do not have a timestamp, could you create it when building the qvd or is it that the you only want append to you current data new keys and not update the ones you already have ?&lt;/P&gt;&lt;P&gt;have you tried creating a sequence number based on your keys and used applymap on your where ? something like &lt;/P&gt;&lt;P&gt;where applymap(field1&amp;amp;field2&amp;amp;field3, 'No') = 'No'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 17:00:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833803#M293350</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-04-27T17:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833804#M293351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you get anywhere with this problem ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It sounds like it might be a common problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://techstuffy.tv/"&gt;http://techstuffy.tv&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 May 2015 10:42:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833804#M293351</guid>
      <dc:creator>markodonovan</dc:creator>
      <dc:date>2015-05-28T10:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833805#M293352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes I eventually solved it. I needed to link the Database table with another Database Table on the Extraction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically I built the query using the SQL SELECT part and joined my table to another table on common fields that were also Indexed. Indexed is the important part of it, so I basically added the field from the table I did not need to the table I required using 3 common Indexed fields from both tables, and I added a field that was also indexed and was also Unique. This provided me with the speed I needed to use Incremental load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sounds confusing but it works really well now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 May 2015 15:54:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833805#M293352</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2015-05-28T15:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833806#M293353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What DB platform was that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 May 2015 16:49:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833806#M293353</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2015-05-28T16:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load Issue, not fast enough!</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833807#M293354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's a PROGRESS Database&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 May 2015 17:33:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-Issue-not-fast-enough/m-p/833807#M293354</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2015-05-28T17:33:29Z</dc:date>
    </item>
  </channel>
</rss>

