<?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 What is the use/purpose of un-optimized load and Binary Load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/What-is-the-use-purpose-of-un-optimized-load-and-Binary-Load/m-p/347710#M128698</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;Need details on un-optimized load and Binary Load.&lt;/P&gt;&lt;P&gt;On community i found technichal issue for both these and unable to get what are un-optimized load and Binary Load and what is usefulness of these.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls explain for better understanding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jul 2012 13:18:31 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-07-12T13:18:31Z</dc:date>
    <item>
      <title>What is the use/purpose of un-optimized load and Binary Load</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-use-purpose-of-un-optimized-load-and-Binary-Load/m-p/347710#M128698</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;Need details on un-optimized load and Binary Load.&lt;/P&gt;&lt;P&gt;On community i found technichal issue for both these and unable to get what are un-optimized load and Binary Load and what is usefulness of these.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls explain for better understanding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2012 13:18:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-use-purpose-of-un-optimized-load-and-Binary-Load/m-p/347710#M128698</guid>
      <dc:creator />
      <dc:date>2012-07-12T13:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: What is the use/purpose of un-optimized load and Binary Load</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-use-purpose-of-un-optimized-load-and-Binary-Load/m-p/347711#M128699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi mansi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you load data from QVD:s you preferably do it optimized.&lt;/P&gt;&lt;P&gt;To do an optimized load, simply load the individual fields, or * without doing any operations or conditions.&lt;/P&gt;&lt;P&gt;This is the prefered way of loading data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, you cannot always do it since you need to do operations, for example date, num, count, where, exists et cetera. As soon as you do only one of these operations, you break the optimized load and the load is unoptimized.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Optimized load just means to transfer data from the QVD directly into RAM, hence it is optimized. It never needs to look at the data, it just transfers data into RAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you instead do an operation, like date or num, the load needs do do the operation on each row inside the QVD before it is loaded into RAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Binary loads are even quicker than loading from QVD because it loads the whole QVW-file as a whole and copies the whole data model into RAM in one go. So if binary load can be used, it is very efficient.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this will kick you in the right direction.&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13421026782794608" jivemacro_uid="_13421026782794608"&gt;&lt;P&gt;VeryOptimized:&lt;/P&gt;&lt;P&gt;BINARY MyFile.qvw;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Optimized:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Field2&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;Optimized:&lt;/P&gt;&lt;P&gt;LOAD *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UnOptimized:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; num(Field1) as Field1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field2&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UnOptimized:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Field2&lt;/P&gt;&lt;P&gt;WHERE Field1 &amp;gt; 0&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/21613"&gt;Magnus Åvitsland&lt;/A&gt;&lt;/P&gt;&lt;P&gt;BI Consultant&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.framsteg.com" target="_blank"&gt;Framsteg Business Intelligence Corp.&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2012 14:18:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-use-purpose-of-un-optimized-load-and-Binary-Load/m-p/347711#M128699</guid>
      <dc:creator>magavi_framsteg</dc:creator>
      <dc:date>2012-07-12T14:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: What is the use/purpose of un-optimized load and Binary Load</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-use-purpose-of-un-optimized-load-and-Binary-Load/m-p/347712#M128700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much Magnus Åvitsland for timely Reply.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2012 14:26:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-use-purpose-of-un-optimized-load-and-Binary-Load/m-p/347712#M128700</guid>
      <dc:creator />
      <dc:date>2012-07-12T14:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: What is the use/purpose of un-optimized load and Binary Load</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-use-purpose-of-un-optimized-load-and-Binary-Load/m-p/347713#M128701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No problemo.&lt;/P&gt;&lt;P&gt;And please mark your question as solved, for other users to take benefit from it.&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/21613"&gt;Magnus Åvitsland&lt;/A&gt;&lt;/P&gt;&lt;P&gt;BI Consultant&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.framsteg.com" target="_blank"&gt;Framsteg Business Intelligence Corp.&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2012 14:29:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-use-purpose-of-un-optimized-load-and-Binary-Load/m-p/347713#M128701</guid>
      <dc:creator>magavi_framsteg</dc:creator>
      <dc:date>2012-07-12T14:29:56Z</dc:date>
    </item>
  </channel>
</rss>

