<?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 Loading and Autonumberhash256 for a very large application in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095926#M364076</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It seems that our data-structure within the ERP system is different from yours. But this isn't important - essential is if it's possible to create unique numeric values by the combination from different numeric ID's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And don't forget my last sentence in my first answer to check if other approaches within the datamodel could suit your requirements better then a link-table approach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Apr 2016 11:26:55 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2016-04-12T11:26:55Z</dc:date>
    <item>
      <title>Incremental Loading and Autonumberhash256 for a very large application</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095916#M364066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a problem - a BIG one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a&amp;nbsp; dashboard which is integrating a lot of disparate sources and&amp;nbsp; the link table I have has 6 keys. Each of them is a composite key and I had used Autonumberhash256 to minimize the size.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the problem is &lt;/P&gt;&lt;P&gt;1. we need to incrementally load &lt;/P&gt;&lt;P&gt;2. The link table is over 120 mn records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am aware now that autonumberhash256 will not work during incremental loading after I saw hash collisions in the key. So same key generated for two different periods where the original values are different.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought of using the hash256 in the qvd generator level for incremental loading and using autonumberhash256 in the model. But I am not too sure it will perform well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do not know of a way to keep the autnumbering persistent across different runs (incremental). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cant move this to ETL tools so have to resolve this is QV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any bright ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 19:29:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095916#M364066</guid>
      <dc:creator />
      <dc:date>2016-04-11T19:29:04Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Loading and Autonumberhash256 for a very large application</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095917#M364067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, either autonumber or autonumber hash functions will returns same key values for different values on different reload instances. So you can't create Key number in QVD Loader. But you can create while consuming the QVD into application Layer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, while creating the QVD, add the composite Key without AutoNumber function.&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;SELECT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; D,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; E,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A&amp;amp;'|'&amp;amp;B&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;amp;'|'&amp;amp;C&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;amp;'|'&amp;amp;D AS %PrimaryKey&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;From Table&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Where TimePeriodFileter;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With this approach QVD size may increase the size, but its not a issue. &lt;/P&gt;&lt;P&gt;Method1:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;While consuming QVD , add the auto number function.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; D,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; E,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AutoNumber(&lt;SPAN style="font-size: 13.3333px;"&gt;%PrimaryKey) AS %AutoFactKey&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;From QVD_NAME.qvd;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Down side is QVD is not optimized load&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Method2:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Use resident table to create the Auto Number Key&amp;amp; do left join to Main table.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Fact:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; D,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; E,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt;%PrimaryKey&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;From QVD_NAME.qvd (qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Left Join(Fact)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Load distinct&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt;%PrimaryKey,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AutoNumber(&lt;SPAN style="font-size: 13.3333px;"&gt;%PrimaryKey) as %AutoFactKey&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Resident Fact;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Down side is you have to use the Resident Load.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Try above two methods and measure reload times and use best method works for you.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 20:19:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095917#M364067</guid>
      <dc:creator />
      <dc:date>2016-04-11T20:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Loading and Autonumberhash256 for a very large application</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095918#M364068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the response - but I have more than one key to take care of. So will have to see which works better for this case.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2016 04:48:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095918#M364068</guid>
      <dc:creator />
      <dc:date>2016-04-12T04:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Loading and Autonumberhash256 for a very large application</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095919#M364069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;I do not know of a way to keep the autnumbering persistent across different runs (incremental).&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;That's because that can't be done reliably with the autonumber* functions. You will have to use the Hash* functions which will work to create unique values across different runs. You can then use the autonumber function in the final load (where you put everything together for the dashboard workbooks) to replace the unique hash keys with smaller numeric autonumber values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2016 06:22:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095919#M364069</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-04-12T06:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Loading and Autonumberhash256 for a very large application</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095920#M364070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Gysbert - that's what I am scripting right now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But overall will that not slow down the load times given the fact I will be loading all of two years data in the model and generate autonumber hash - that's my worry &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2016 06:24:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095920#M364070</guid>
      <dc:creator />
      <dc:date>2016-04-12T06:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Loading and Autonumberhash256 for a very large application</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095921#M364071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you do incremental loading then you will have to do it only once for the historic data. You will add the hashed key to the historic qvd's so you won't have to recalculate them every time. You'll only have to calculate the hash keys for the new data. I'm afraid that turning the hash keys into autonumber values does mean that you won't have an optimized load from the qvd.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2016 06:35:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095921#M364071</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-04-12T06:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Loading and Autonumberhash256 for a very large application</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095922#M364072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;An autonumberhash will require a lot of ressources and therefore it could be better to use composite keys like in the example from &lt;A href="https://community.qlik.com/qlik-users/63925"&gt;dathu.qv&lt;/A&gt;. An alternatively might be to create a numeric key (by using only id-fields for it) like this one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;([StoreID] * pow(10, 4)) + ([OrderID] * pow(10, 9)) + [OrderLineID] as [UniqueKey]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which worked great in my case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Further I would consider to change the whole approach of the datamodel then to use such a large link-table with so many keys might not the most performant way to handle a large dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2016 06:46:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095922#M364072</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-04-12T06:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Loading and Autonumberhash256 for a very large application</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095923#M364073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great idea Marcus &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, why not do the same for OrderLineID ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I&amp;nbsp; will need to check if every field in the composite key is a number though.&lt;/P&gt;&lt;P&gt;Just thinking aloud - If I use hash(string field) it should always return the same hash value I guess and then I can use the above trick. ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2016 07:21:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095923#M364073</guid>
      <dc:creator />
      <dc:date>2016-04-12T07:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Loading and Autonumberhash256 for a very large application</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095924#M364074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't understand exactly what you mean with:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;Also, why not do the same for OrderLineID ?&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;Maybe it's not the same like in your environment but by us it's a max. 3 digit number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding to your hash-approach I would try to avoid it under nearly all circumstances then it creates a (long) string which meant many disc-space and RAM will be needed for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2016 10:35:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095924#M364074</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-04-12T10:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Loading and Autonumberhash256 for a very large application</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095925#M364075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;‌I mean why no OrderLineId * pow(10,9).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2016 10:41:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095925#M364075</guid>
      <dc:creator />
      <dc:date>2016-04-12T10:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Loading and Autonumberhash256 for a very large application</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095926#M364076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It seems that our data-structure within the ERP system is different from yours. But this isn't important - essential is if it's possible to create unique numeric values by the combination from different numeric ID's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And don't forget my last sentence in my first answer to check if other approaches within the datamodel could suit your requirements better then a link-table approach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2016 11:26:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1095926#M364076</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-04-12T11:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Loading and Autonumberhash256 for a very large application</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1968163#M1220436</link>
      <description>&lt;P&gt;Would you please share the key values and the hash-function that caused the hash collision.&lt;/P&gt;
&lt;P&gt;Kind regards&lt;/P&gt;
&lt;P&gt;Herbert&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2022 11:06:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Loading-and-Autonumberhash256-for-a-very-large/m-p/1968163#M1220436</guid>
      <dc:creator>herbert_beck</dc:creator>
      <dc:date>2022-08-12T11:06:47Z</dc:date>
    </item>
  </channel>
</rss>

