<?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: After a test, 'drop field' can drop several fields, what is really the difference vs 'drop fields'? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/After-a-test-drop-field-can-drop-several-fields-what-is-really/m-p/1403829#M612191</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you can spell it either way and it works exactly the same. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Aug 2017 18:21:49 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2017-08-29T18:21:49Z</dc:date>
    <item>
      <title>After a test, 'drop field' can drop several fields, what is really the difference vs 'drop fields'?</title>
      <link>https://community.qlik.com/t5/QlikView/After-a-test-drop-field-can-drop-several-fields-what-is-really/m-p/1403825#M612187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did a test and I stumbled upon that &lt;STRONG&gt;drop field can also drop several fields. So my question is, what is really the difference between the 'drop field' and 'drop fields'?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="174991" alt="Capture1.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/174991_Capture1.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 17:38:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/After-a-test-drop-field-can-drop-several-fields-what-is-really/m-p/1403825#M612187</guid>
      <dc:creator>julioarriaga</dc:creator>
      <dc:date>2017-08-29T17:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: After a test, 'drop field' can drop several fields, what is really the difference vs 'drop fields'?</title>
      <link>https://community.qlik.com/t5/QlikView/After-a-test-drop-field-can-drop-several-fields-what-is-really/m-p/1403826#M612188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may spell it "field" or "fields" whether dropping one or many fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are dropping multiple fields, there is a significant performance difference between using one DROP statement vs multiple DROP statements that drop one field each.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;DROP FIELD a,b,c;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;is faster than&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;DROP FIELD a;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;DROP FIELD b;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;DROP FIELD c;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason is that QV rewrites the records array after every DROP statement, which can take a few seconds in a large table. This may be less of an issue in QV12, haven't benchmarked it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com" rel="nofollow" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://qlikviewcookbook.com" rel="nofollow" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 17:47:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/After-a-test-drop-field-can-drop-several-fields-what-is-really/m-p/1403826#M612188</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2017-08-29T17:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: After a test, 'drop field' can drop several fields, what is really the difference vs 'drop fields'?</title>
      <link>https://community.qlik.com/t5/QlikView/After-a-test-drop-field-can-drop-several-fields-what-is-really/m-p/1403827#M612189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can write also in single statement which is fastest as ROB suggested &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;DROP &lt;STRONG&gt;FIELDS&lt;/STRONG&gt; a,b,c;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 17:54:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/After-a-test-drop-field-can-drop-several-fields-what-is-really/m-p/1403827#M612189</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2017-08-29T17:54:23Z</dc:date>
    </item>
    <item>
      <title>Re: After a test, 'drop field' can drop several fields, what is really the difference vs 'drop fields'?</title>
      <link>https://community.qlik.com/t5/QlikView/After-a-test-drop-field-can-drop-several-fields-what-is-really/m-p/1403828#M612190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So basically it is the same with 'drop field' and 'drop fields' when you're dropping several fields?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 18:03:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/After-a-test-drop-field-can-drop-several-fields-what-is-really/m-p/1403828#M612190</guid>
      <dc:creator>julioarriaga</dc:creator>
      <dc:date>2017-08-29T18:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: After a test, 'drop field' can drop several fields, what is really the difference vs 'drop fields'?</title>
      <link>https://community.qlik.com/t5/QlikView/After-a-test-drop-field-can-drop-several-fields-what-is-really/m-p/1403829#M612191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you can spell it either way and it works exactly the same. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 18:21:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/After-a-test-drop-field-can-drop-several-fields-what-is-really/m-p/1403829#M612191</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2017-08-29T18:21:49Z</dc:date>
    </item>
  </channel>
</rss>

