<?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: Is a Mapping indicator still required for Mapping Loads? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Is-a-Mapping-indicator-still-required-for-Mapping-Loads-works/m-p/2476847#M100313</link>
    <description>&lt;P&gt;Just chiming in to say that this does seem to be new to November 2023 - I have a May 2023 environment and that one still requires the Mapping keyword.&lt;/P&gt;
&lt;P&gt;Potentially a useful shortcut here if it's intentional and permanent.&lt;/P&gt;</description>
    <pubDate>Mon, 19 Aug 2024 13:50:12 GMT</pubDate>
    <dc:creator>Or</dc:creator>
    <dc:date>2024-08-19T13:50:12Z</dc:date>
    <item>
      <title>Is a Mapping indicator still required for Mapping Loads? (works without in QS Nov'23)</title>
      <link>https://community.qlik.com/t5/App-Development/Is-a-Mapping-indicator-still-required-for-Mapping-Loads-works/m-p/2476638#M100294</link>
      <description>&lt;P&gt;We recently upgraded to November 2023 (Qlik Sense Enterprise) and noticed by accident that an ApplyMap works despite forgetting to add MAPPING to the previous table load. I can't find this being added as a feature - perhaps it's a happy accident?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This would save us considerable time when loading large QVDs. Currently, we load a QVD optimized then RESIDENT for a mapping load, taking almost as long as an unoptimized load. If we could load optimized into a mapping load and do an apply map, that would save significant time and memory resources. Of course, we have to drop the table later. I don't want to adjust our code to use this new (non?)feature if there's potential for it to break later.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it's not a feature, but rather a happy accident, can we request it be added as a feature??&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 18:46:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Is-a-Mapping-indicator-still-required-for-Mapping-Loads-works/m-p/2476638#M100294</guid>
      <dc:creator>bsanders21</dc:creator>
      <dc:date>2024-08-19T18:46:00Z</dc:date>
    </item>
    <item>
      <title>Re: Is a Mapping indicator still required for Mapping Loads?</title>
      <link>https://community.qlik.com/t5/App-Development/Is-a-Mapping-indicator-still-required-for-Mapping-Loads-works/m-p/2476656#M100295</link>
      <description>&lt;P&gt;This is news to me. I can recreate it just as you've said. although I don't see any changes in the doc. In testing I found that the table referenced in the ApplyMap() must still have only two columns or an error is thrown.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also note that :&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Map x using y;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;still requires that the "y" table be created with the Mapping prefix.&lt;/P&gt;
&lt;P&gt;I don't quite understand your issue with optimized QVD load. As far as I can see you still can't use ApplyMap() in an optimized load. Can you post an example?&lt;/P&gt;
&lt;P&gt;-Rob&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Aug 2024 02:53:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Is-a-Mapping-indicator-still-required-for-Mapping-Loads-works/m-p/2476656#M100295</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2024-08-17T02:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: Is a Mapping indicator still required for Mapping Loads?</title>
      <link>https://community.qlik.com/t5/App-Development/Is-a-Mapping-indicator-still-required-for-Mapping-Loads-works/m-p/2476840#M100311</link>
      <description>&lt;P&gt;My issue with the optimized load is for bringing in the data for the MAPPING LOAD not the ApplyMap.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The conventional syntax is:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;// Proper syntax:
map_desc:
MAPPING LOAD 
  ITEM_ID, 
  DESC
RESIDENT description; 
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if we want to load a large QVD&amp;nbsp; (e.g. 60M item metadata file) just to do a mapping load for a description:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;// this load is NOT optimized.
map_desc:
MAPPING LOAD 
  ITEM_ID, 
  DESC
FROM [item.qvd] (qvd); &lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Our workaround:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;// Optimized QVD load
temp_item:
LOAD 
  ITEM_ID,
  DESC
FROM [item.qvd] (qvd); 

// Memory load from temp to mapping (takes time)
map_desc:
MAPPING LOAD 
  ITEM_ID, 
  DESC
RESIDENT temp_item;
DROP TABLE temp_item;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Currently experiencing in Nov 2023 (hope this becomes a documented feature):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;// optimized. requires DROP TABLE after ApplyMap

map_desc:
LOAD 
  ITEM_ID,
  DESC
FROM [item.qvd] (qvd);&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 13:47:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Is-a-Mapping-indicator-still-required-for-Mapping-Loads-works/m-p/2476840#M100311</guid>
      <dc:creator>bsanders21</dc:creator>
      <dc:date>2024-08-19T13:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: Is a Mapping indicator still required for Mapping Loads?</title>
      <link>https://community.qlik.com/t5/App-Development/Is-a-Mapping-indicator-still-required-for-Mapping-Loads-works/m-p/2476846#M100312</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/135099"&gt;@bsanders21&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;You should not use large data sets to populate a Mapping Table. The performance is terrible. &lt;BR /&gt;Do a LEFT JOIN instead. Your code should load way faster.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Mark Costa&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 13:49:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Is-a-Mapping-indicator-still-required-for-Mapping-Loads-works/m-p/2476846#M100312</guid>
      <dc:creator>marksouzacosta</dc:creator>
      <dc:date>2024-08-19T13:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Is a Mapping indicator still required for Mapping Loads?</title>
      <link>https://community.qlik.com/t5/App-Development/Is-a-Mapping-indicator-still-required-for-Mapping-Loads-works/m-p/2476847#M100313</link>
      <description>&lt;P&gt;Just chiming in to say that this does seem to be new to November 2023 - I have a May 2023 environment and that one still requires the Mapping keyword.&lt;/P&gt;
&lt;P&gt;Potentially a useful shortcut here if it's intentional and permanent.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 13:50:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Is-a-Mapping-indicator-still-required-for-Mapping-Loads-works/m-p/2476847#M100313</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2024-08-19T13:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: Is a Mapping indicator still required for Mapping Loads?</title>
      <link>https://community.qlik.com/t5/App-Development/Is-a-Mapping-indicator-still-required-for-Mapping-Loads-works/m-p/2476851#M100314</link>
      <description>&lt;P&gt;Understood, we use both, but unfortunately we utilize Qlik for significant ETL at times and a mapping load can be more efficient than a Left Join with a large volume of transactions in our FACT data (easily 500M+), especially when we have multiple ApplyMaps. We often test both ways for optimization depending on our project.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 13:53:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Is-a-Mapping-indicator-still-required-for-Mapping-Loads-works/m-p/2476851#M100314</guid>
      <dc:creator>bsanders21</dc:creator>
      <dc:date>2024-08-19T13:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: Is a Mapping indicator still required for Mapping Loads?</title>
      <link>https://community.qlik.com/t5/App-Development/Is-a-Mapping-indicator-still-required-for-Mapping-Loads-works/m-p/2476860#M100315</link>
      <description>&lt;P&gt;FYI I have tested on Qlik Cloud and I got the same behavior of&amp;nbsp;QS&amp;nbsp;&lt;SPAN&gt;November 2023&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 14:24:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Is-a-Mapping-indicator-still-required-for-Mapping-Loads-works/m-p/2476860#M100315</guid>
      <dc:creator>marksouzacosta</dc:creator>
      <dc:date>2024-08-19T14:24:04Z</dc:date>
    </item>
    <item>
      <title>Re: Is a Mapping indicator still required for Mapping Loads?</title>
      <link>https://community.qlik.com/t5/App-Development/Is-a-Mapping-indicator-still-required-for-Mapping-Loads-works/m-p/2476866#M100316</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/24514"&gt;@Patric_Nordstrom&lt;/a&gt;&amp;nbsp; Any chance you'd be aware of this? I think you're the go-to person on what's new in each version (at least based on the technical previews). Sorry if that's not the case!&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 14:42:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Is-a-Mapping-indicator-still-required-for-Mapping-Loads-works/m-p/2476866#M100316</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2024-08-19T14:42:26Z</dc:date>
    </item>
  </channel>
</rss>

