<?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 ApplyMap increasing file size??? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537714#M200976</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am working on optimizing an application.&amp;nbsp; It is 800 MB in size and the issue it that is takes 60 GB to run the script (300 mill rows).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well I did get it optimized (20GB) but now the file size is almost double 1,350 MB.&amp;nbsp; I have isolated the script that causes the increase I am just unsure as to why.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a date field stored as a numeric value (e.g. 123 = January 2007).&lt;/P&gt;&lt;P&gt;----EDIT--- The date field is not a timestamp, it is a 3 character numeric field----&lt;/P&gt;&lt;P&gt; I need to get the month name from this field so loaded all dates into a mapping table along with the month name into a mapping table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthMap:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mapping load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TimeValue,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthName(TimeValueEndDate) as [Month Name]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ..\TIME.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then apply map in the load script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; applymap('MonthMap', TimeValue) as [Month Name]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is what causes the increase in file size of 1,350 MB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I instead take this out and do a left join:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Left join (table1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Load TimeValue,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthName(TimeValueEndDate) as [Month Name]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ..\TIME.qvd (qvd);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drop field TimeValue;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The resulting file size is 805K (No other changes were made)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can use the left join without a problem and have implemented this into the app but I am still concerned about the affect that the applymap had on file size since I use this alot in my development.&amp;nbsp; Any idea why the mapping load would cause that large of an increase in file size?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: ryan hicks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Dec 2013 18:54:35 GMT</pubDate>
    <dc:creator>ryanhicks</dc:creator>
    <dc:date>2013-12-30T18:54:35Z</dc:date>
    <item>
      <title>ApplyMap increasing file size???</title>
      <link>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537714#M200976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am working on optimizing an application.&amp;nbsp; It is 800 MB in size and the issue it that is takes 60 GB to run the script (300 mill rows).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well I did get it optimized (20GB) but now the file size is almost double 1,350 MB.&amp;nbsp; I have isolated the script that causes the increase I am just unsure as to why.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a date field stored as a numeric value (e.g. 123 = January 2007).&lt;/P&gt;&lt;P&gt;----EDIT--- The date field is not a timestamp, it is a 3 character numeric field----&lt;/P&gt;&lt;P&gt; I need to get the month name from this field so loaded all dates into a mapping table along with the month name into a mapping table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthMap:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mapping load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TimeValue,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthName(TimeValueEndDate) as [Month Name]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ..\TIME.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then apply map in the load script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; applymap('MonthMap', TimeValue) as [Month Name]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is what causes the increase in file size of 1,350 MB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I instead take this out and do a left join:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Left join (table1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Load TimeValue,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthName(TimeValueEndDate) as [Month Name]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ..\TIME.qvd (qvd);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drop field TimeValue;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The resulting file size is 805K (No other changes were made)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can use the left join without a problem and have implemented this into the app but I am still concerned about the affect that the applymap had on file size since I use this alot in my development.&amp;nbsp; Any idea why the mapping load would cause that large of an increase in file size?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: ryan hicks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Dec 2013 18:54:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537714#M200976</guid>
      <dc:creator>ryanhicks</dc:creator>
      <dc:date>2013-12-30T18:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: ApplyMap increasing file size???</title>
      <link>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537715#M200977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have a match in your mapping table for every TimeValue in table1?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not, the first version using the applymap() will use the TimeValue as default value, where the second version will create a NULL. So the number of distinct values of both versions might hugely differ, which might explan a difference in file size.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Dec 2013 23:05:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537715#M200977</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-12-30T23:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: ApplyMap increasing file size???</title>
      <link>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537716#M200978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think it is because Applymap returns the Monthname in String format, with Left join, you are calculating the Monthname, and it saves like "date" format (more efficient).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try in Mapping, use Num(Monthname(...)) instead of only Monthname(...), and when you use ApplyMap, use Monthname(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;[Month Name]&lt;/SPAN&gt;). This will take the same effect that Left Join, but using Maps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please, let me know if it works!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2013 02:56:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537716#M200978</guid>
      <dc:creator>sebastiandperei</dc:creator>
      <dc:date>2013-12-31T02:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: ApplyMap increasing file size???</title>
      <link>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537717#M200979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;use distinct in left join you can get some accurate results and&amp;nbsp; this will reduce memory too &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Left join (table1)&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Load &lt;STRONG&gt; DISTINCT&lt;/STRONG&gt; TimeValue,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthName(TimeValueEndDate) as [Month Name]&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ..\TIME.qvd (qvd);&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drop field TimeValue;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;---&amp;gt; check the rows of table1 before and after leftjoining , and check with disinct too &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;regards&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Premhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2013 05:48:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537717#M200979</guid>
      <dc:creator>preminqlik</dc:creator>
      <dc:date>2013-12-31T05:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: ApplyMap increasing file size???</title>
      <link>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537718#M200980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ryan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suspect the problem has to do with the resolution of the timestamp you are using (down to milliseconds?), which means that you have a very large number of distinct values. I also suspect that the qvd contains one line per day (hence swuehl's point).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The time portion plays no part in the month selection, so I would use applymap(), but do it like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the mapping table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; MonthMap:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; mapping load&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Distinct Floor(TimeValue),&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthName(TimeValueEndDate) as [Month Name]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; from ..\TIME.qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and for the applymap:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Applymap('MonthMap', Floor(TimeValue), 'Missing') as [Month Name]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That should prevent an explosion of memory or disk space. Note the 'Missing' if no match is found. You could also base the mapping table on the actual data, rather than a separate qvd (which would mean no unmatched values), or use the Month() or MonthName() function on the timestamp during your load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2013 07:08:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537718#M200980</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2013-12-31T07:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: ApplyMap increasing file size???</title>
      <link>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537719#M200981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;swuehl,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the reply.&amp;nbsp; there is a 100% match between teh tables.&amp;nbsp; the funny thing is there are only 3 possible values for this load (test load).&amp;nbsp; there will be more once we implement the app in production.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2013 13:56:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537719#M200981</guid>
      <dc:creator>ryanhicks</dc:creator>
      <dc:date>2013-12-31T13:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: ApplyMap increasing file size???</title>
      <link>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537720#M200982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the QVD only contains one value for each month and there is a 100% match between the QVD's. so there are only around 50 distinct values (i make sure of this when I create the Time.qvd.&amp;nbsp; also the date field that i am mapping on is only a 3 character numeric field not a timestamp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;while the TimeValueEndDate is a timestamp field, there is only one per record and that is removed with the MonthName function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as using the monthname function during the load that is not an option as the main data source has only the 3 character field so i need to map that character to a monthname hence the left join/map options.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2013 14:03:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537720#M200982</guid>
      <dc:creator>ryanhicks</dc:creator>
      <dc:date>2013-12-31T14:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: ApplyMap increasing file size???</title>
      <link>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537721#M200983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So your TIME.qvd is really small, right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you compared the two versions of your qvws with regard to number of distinct field values and rows in your resident tables? You can do this easily looking at the tables tab of Document Properties.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is the count and distinct count of field [Month Name] equal in both qvws?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit: And please also check the other fields / tables. In general, is the resulting data model the same in both versions?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2013 14:24:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537721#M200983</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-12-31T14:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: ApplyMap increasing file size???</title>
      <link>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537722#M200984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes i have compared them. in both apps the number of values and the number of distinct values are the same in both apps.&amp;nbsp; 68 mill values (one for each record) 3 distinct values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;count and count distinct are equal in both qvws.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have also run the document analyzer on both of the qvw's and there is no difference.&amp;nbsp; they should logically be exactly the same file. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2013 14:31:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537722#M200984</guid>
      <dc:creator>ryanhicks</dc:creator>
      <dc:date>2013-12-31T14:31:30Z</dc:date>
    </item>
    <item>
      <title>Re: ApplyMap increasing file size???</title>
      <link>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537723#M200985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I don't have another idea right now, if all other qvw settings (file compression) are identical as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which version are you using? Can you replicate this issue with a very downstripped version of your app (just the TimeValue mapping)? Can you share this simplified app then? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not, I would consider creating a ticket with QT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2013 14:46:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537723#M200985</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-12-31T14:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: ApplyMap increasing file size???</title>
      <link>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537724#M200986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I added the Num to the mapping table, and used MonthName when i apply the map and the file size is still inflated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the suggestion though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2013 14:56:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537724#M200986</guid>
      <dc:creator>ryanhicks</dc:creator>
      <dc:date>2013-12-31T14:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: ApplyMap increasing file size???</title>
      <link>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537725#M200987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately there are strict rules about me posting files from the workplace and the answer is not worth the potential backlash of posting files.&amp;nbsp; I do plan on opening a ticket with QT though. i wanted to see if anyone in the community had any thoughts first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2013 14:57:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537725#M200987</guid>
      <dc:creator>ryanhicks</dc:creator>
      <dc:date>2013-12-31T14:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: ApplyMap increasing file size???</title>
      <link>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537726#M200988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you get an explanation for the inflation sometime in the future, please post a follow-up here, would be interesting to know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2013 15:00:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ApplyMap-increasing-file-size/m-p/537726#M200988</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-12-31T15:00:32Z</dc:date>
    </item>
  </channel>
</rss>

