<?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: Order of result from load in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Order-of-result-from-load/m-p/1623904#M46463</link>
    <description>&lt;P&gt;It is a good question. I have not&amp;nbsp; seen anything&amp;nbsp; in the qlik documentation about load order from QVC, as long its undocumented there is no guarantee in behaviour. However you could assume the data to be loaded as entered into the qvw.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If your order of data is important then you should order it explicit.&lt;/P&gt;&lt;P&gt;OrderedTable:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Load&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; *&lt;/P&gt;&lt;P&gt;Resident&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; UnorderedTable&lt;/P&gt;&lt;P&gt;Order by&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;YourOrderField&amp;nbsp;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;Drop UnorderedTable;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 14 Sep 2019 15:49:45 GMT</pubDate>
    <dc:creator>Vegar</dc:creator>
    <dc:date>2019-09-14T15:49:45Z</dc:date>
    <item>
      <title>Order of result from load</title>
      <link>https://community.qlik.com/t5/App-Development/Order-of-result-from-load/m-p/1623899#M46461</link>
      <description>&lt;P&gt;Loading from a qdf or resident table, is there any guaranties for in which order the rows are returned. E.g. the order they where inserted in the first place into the qdf or resident table.&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Mats&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Sep 2019 13:43:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Order-of-result-from-load/m-p/1623899#M46461</guid>
      <dc:creator>matspersson</dc:creator>
      <dc:date>2019-09-14T13:43:46Z</dc:date>
    </item>
    <item>
      <title>Re: Order of result from load</title>
      <link>https://community.qlik.com/t5/App-Development/Order-of-result-from-load/m-p/1623903#M46462</link>
      <description>&lt;P&gt;Sorry, meant qvd file.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Sep 2019 15:32:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Order-of-result-from-load/m-p/1623903#M46462</guid>
      <dc:creator>matspersson</dc:creator>
      <dc:date>2019-09-14T15:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: Order of result from load</title>
      <link>https://community.qlik.com/t5/App-Development/Order-of-result-from-load/m-p/1623904#M46463</link>
      <description>&lt;P&gt;It is a good question. I have not&amp;nbsp; seen anything&amp;nbsp; in the qlik documentation about load order from QVC, as long its undocumented there is no guarantee in behaviour. However you could assume the data to be loaded as entered into the qvw.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If your order of data is important then you should order it explicit.&lt;/P&gt;&lt;P&gt;OrderedTable:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Load&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; *&lt;/P&gt;&lt;P&gt;Resident&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; UnorderedTable&lt;/P&gt;&lt;P&gt;Order by&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;YourOrderField&amp;nbsp;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;Drop UnorderedTable;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Sep 2019 15:49:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Order-of-result-from-load/m-p/1623904#M46463</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2019-09-14T15:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: Order of result from load</title>
      <link>https://community.qlik.com/t5/App-Development/Order-of-result-from-load/m-p/1624180#M46478</link>
      <description>&lt;P&gt;AFAIK the order depends of the point of view - from the data-table or from the symbol-table. The data-table is always loaded with the order from the source - unless you apply an order by statement. From the point of view of the symbol-table respectively the (distinct) fieldvalues it's different because it depends on whether the field exists already.&lt;/P&gt;&lt;P&gt;If the field didn't exists the load-order is identically with the load-order of the data-table but if the field exists only new fieldvalues are added and the pointer increased to one bit and is stored in the data-table - otherwise it's just a lookup to fetch the right pointer value.&lt;/P&gt;&lt;P&gt;You may check this with some of your data and/or a few dummy-data by applying recno/rowno to your origin and deduced loadings and maybe even to your source-data (which may stored in a different order as they are displayed).&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Mon, 16 Sep 2019 12:30:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Order-of-result-from-load/m-p/1624180#M46478</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2019-09-16T12:30:31Z</dc:date>
    </item>
  </channel>
</rss>

