<?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 MATCH function in a LOAD in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/MATCH-function-in-a-LOAD/m-p/629954#M1088760</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you use a MATCH function in a LOAD, will this create an unoptimized LOAD?&amp;nbsp; My presumption is yes, but wanted to check.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 May 2014 16:01:55 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-05-27T16:01:55Z</dc:date>
    <item>
      <title>MATCH function in a LOAD</title>
      <link>https://community.qlik.com/t5/QlikView/MATCH-function-in-a-LOAD/m-p/629954#M1088760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you use a MATCH function in a LOAD, will this create an unoptimized LOAD?&amp;nbsp; My presumption is yes, but wanted to check.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2014 16:01:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MATCH-function-in-a-LOAD/m-p/629954#M1088760</guid>
      <dc:creator />
      <dc:date>2014-05-27T16:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: MATCH function in a LOAD</title>
      <link>https://community.qlik.com/t5/QlikView/MATCH-function-in-a-LOAD/m-p/629955#M1088761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Alexander&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yup, it will unoptimise the load.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2014 16:08:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MATCH-function-in-a-LOAD/m-p/629955#M1088761</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-27T16:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: MATCH function in a LOAD</title>
      <link>https://community.qlik.com/t5/QlikView/MATCH-function-in-a-LOAD/m-p/629956#M1088762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;According to my knowledge, unoptimize load mean, the Script which has a WHERE CLAUSE.&lt;/P&gt;&lt;P&gt;even it is very simple like where ID =10.&lt;/P&gt;&lt;P&gt;in this case for every row, the where clause will be checked, so it will take lot of time in comparison.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;correct me ,if i am wrong...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2014 16:32:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MATCH-function-in-a-LOAD/m-p/629956#M1088762</guid>
      <dc:creator>israrkhan</dc:creator>
      <dc:date>2014-05-27T16:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: MATCH function in a LOAD</title>
      <link>https://community.qlik.com/t5/QlikView/MATCH-function-in-a-LOAD/m-p/629957#M1088763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Alexander.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;MATCH on large data sets faster OR. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/shocked.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My test:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;test_data:&lt;/P&gt;&lt;P&gt;LOAD Floor(Rand()*100) as ID&lt;/P&gt;&lt;P&gt;AutoGenerate(100000000); //&amp;nbsp;&amp;nbsp; Attention!!!! 100 millions rows will be generated&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vStart = Num(Now());&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;test1:&lt;/P&gt;&lt;P&gt;LOAD ID as test1ID&lt;/P&gt;&lt;P&gt;Resident test_data&lt;/P&gt;&lt;P&gt;Where Match(ID,1,2,3,4,5,6,7,8,9,10);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vEnd = Num(Now())-Num($(vStart));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRACE $(vEnd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table test1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vStart = Num(Now());&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;test2:&lt;/P&gt;&lt;P&gt;LOAD ID as test2ID&lt;/P&gt;&lt;P&gt;Resident test_data&lt;/P&gt;&lt;P&gt;Where ID=1 or ID=2 or ID=3 or ID=4 or ID=5 or ID=6 or ID=7 or ID=8 or ID=9 or ID=10;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vEnd = Num(Now())-Num($(vStart));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRACE $(vEnd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table test2;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2014 17:54:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MATCH-function-in-a-LOAD/m-p/629957#M1088763</guid>
      <dc:creator />
      <dc:date>2014-05-27T17:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: MATCH function in a LOAD</title>
      <link>https://community.qlik.com/t5/QlikView/MATCH-function-in-a-LOAD/m-p/629958#M1088764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think that any condition, expression used in load statement that would require a QVD (for example) to be unpacked in order to evaluate the condition, expression etc.. will lead to unoptimized mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2014 17:56:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MATCH-function-in-a-LOAD/m-p/629958#M1088764</guid>
      <dc:creator>Joseph_Musekura</dc:creator>
      <dc:date>2014-05-27T17:56:55Z</dc:date>
    </item>
  </channel>
</rss>

