<?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: Decimal issue while fetching data into QVD file in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269594#M622716</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I have converted number data to the char while fetching into server&lt;/SPAN&gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Why you want to change Number to Char here. Keep as number and then see in server. Because, Qlik won't change any format while loading the tables. If we change that could be the effect &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Feb 2017 11:13:24 GMT</pubDate>
    <dc:creator>Anil_Babu_Samineni</dc:creator>
    <dc:date>2017-02-01T11:13:24Z</dc:date>
    <item>
      <title>Decimal issue while fetching data into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269587#M622705</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 have noticed some issue on the QV server.&lt;/P&gt;&lt;P&gt;I am fetching data from mySQL database via ODBC connection to the QVD file using the following scritp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET ThousandSep='.';&lt;/P&gt;&lt;P&gt;SET DecimalSep=',';&lt;/P&gt;&lt;P&gt;SET MoneyThousandSep=',';&lt;/P&gt;&lt;P&gt;SET MoneyDecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyFormat='£#,##0.00;-£#,##0.00';&lt;/P&gt;&lt;P&gt;SET TimeFormat='hh:mm:ss';&lt;/P&gt;&lt;P&gt;SET DateFormat='DD/MM/YYYY';&lt;/P&gt;&lt;P&gt;SET TimestampFormat='DD/MM/YYYY hh:mm:ss[.fff]';&lt;/P&gt;&lt;P&gt;SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;/P&gt;&lt;P&gt;SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT TO ConnectionName (XUserId is ************************, XPassword is ***********************);&lt;/P&gt;&lt;P&gt;//example of 1 day data for 1 user&lt;/P&gt;&lt;P&gt;let vTableName ='day_record'; //define the table name&lt;/P&gt;&lt;P&gt;QUALIFY *;&lt;/P&gt;&lt;P&gt;$(vTableName):&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; "dv_u_category",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "dv_u_task",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "u_task",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "dv_u_user",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "sys_id",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "u_date",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "u_hours",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "u_time_card",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "u_user";&lt;/P&gt;&lt;P&gt;SQL SELECT "dv_u_category",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "dv_u_task",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "dv_u_user",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "u_task",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "sys_id",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "u_date",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "u_hours",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "u_time_card",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "u_user"&lt;/P&gt;&lt;P&gt;FROM "SCHEMA".OAUSER."$(vTableName)" WHERE sys_updated_on BETWEEN '2016-12-01 00:00:00' AND '2016-12-01 23:59:59' AND&amp;nbsp; dv_u_user LIKE 'USER001';&lt;/P&gt;&lt;P&gt;UNQUALIFY *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem I cant solve is that If I run the script from my laptop, data in the u_hours looks like that:&lt;/P&gt;&lt;P&gt;u_hours&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;0.5&lt;/P&gt;&lt;P&gt;2.25&lt;/P&gt;&lt;P&gt;0.25&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;4&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;0.25&lt;/P&gt;&lt;P&gt;0.25&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the same script used on QV server returns this:&lt;/P&gt;&lt;P&gt;u_hours&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;4&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;De ODBC has been configured ages ago both on the server and my laptop at the same time (never changed any configuration or local settings)&lt;/P&gt;&lt;P&gt;What can be the root cause of this issue ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tryied swiched comma and dot in the file on the QV server&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;SET ThousandSep='.';&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;SET DecimalSep=',';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it didn't help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jan 2017 22:51:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269587#M622705</guid>
      <dc:creator>waszcma1</dc:creator>
      <dc:date>2017-01-31T22:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal issue while fetching data into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269588#M622706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The two QVWs likely have a different default format for u_hours. However, the underlying value is the same, it's just the display value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open the Document Properties, Number tab in each document and look at the format setting for u_hours. Also check the Number Format in the listbox you are using. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2017 02:37:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269588#M622706</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2017-02-01T02:37:16Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal issue while fetching data into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269589#M622708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is not problem with the format when I do sum(u_hours) i have two different results 6 and 7,5&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2017 06:54:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269589#M622708</guid>
      <dc:creator>waszcma1</dc:creator>
      <dc:date>2017-02-01T06:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal issue while fetching data into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269590#M622709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like this in qlikview&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Num(Sum(u_hours),'##.#0')&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2017 07:04:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269590#M622709</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-02-01T07:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal issue while fetching data into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269591#M622711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well this is not that problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tested each line usign&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(u_hours=0,1,0) and all records wher should be 0.5 or 0.25 are flagged as 1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2017 08:39:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269591#M622711</guid>
      <dc:creator>waszcma1</dc:creator>
      <dc:date>2017-02-01T08:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal issue while fetching data into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269592#M622713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use This expression by creating of your Flag&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Num(Sum({&amp;lt;Flag_Name = {1}&amp;gt;}u_hours),'##.#0')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="text-decoration: underline;"&gt;Note&lt;/SPAN&gt;: I would highly recommend you to create one dummy data and then please share your application to work on it. So that, we can help you at a shot &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2017 08:43:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269592#M622713</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-02-01T08:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal issue while fetching data into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269593#M622714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am sure this is not a problem with display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have run script to generate QVD file &lt;/P&gt;&lt;P&gt;This is used on the QV server &lt;IMG alt="script from Server.jpg" class="jive-image image-1" src="/legacyfs/online/151562_script from Server.jpg" style="height: 375px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;The same app I have lunched from my laptop and changed the name of the QVD&lt;/P&gt;&lt;P&gt;&lt;IMG alt="script from laptop.jpg" class="jive-image image-2" src="/legacyfs/online/151564_script from laptop.jpg" style="height: 16px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;Now I have opened the Interactive sql console from my laptop&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Interactive SQL.jpg" class="jive-image image-3" src="/legacyfs/online/151567_Interactive SQL.jpg" style="height: 303px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK now let see what contains both QVDs files one generated on my lapotp and one from serwer &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from my laptop:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Data from PSTM.jpg" class="image-4 jive-image" src="/legacyfs/online/151568_Data from PSTM.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QVD generated on the QV server but opened localy on my laptop &lt;/P&gt;&lt;P&gt;I have converted number data to the char while fetching into server &lt;/P&gt;&lt;P&gt;As you can see we lost all numbers after comma&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Data from Server.jpg" class="image-5 jive-image" src="/legacyfs/online/151569_Data from Server.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem might be version of ODBC driver (server has 7.01.0095, my laptop 8.00.0017) but I am not sure if this is the right direction. It is not so easy for me to force update the driver on the server so I need to be sure about that what is the root cause of this issue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2017 11:08:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269593#M622714</guid>
      <dc:creator>waszcma1</dc:creator>
      <dc:date>2017-02-01T11:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal issue while fetching data into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269594#M622716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I have converted number data to the char while fetching into server&lt;/SPAN&gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Why you want to change Number to Char here. Keep as number and then see in server. Because, Qlik won't change any format while loading the tables. If we change that could be the effect &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2017 11:13:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269594#M622716</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-02-01T11:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal issue while fetching data into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269595#M622718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did it for purpose&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Converting numeric value to the char we have no doubt how to display this value and shows it as a text so there is no way that the numbers after coma can gone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used this conversion to show you that when I run the same script on both machines (latpop, server) I have totaly different output and there is clearly while the ODBC is fetching data, I have also used QEye to check the content of both QVDs file and there is no doubt that QVD generated on the server has missing decimal value after comma&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both QVD were generated using the same script the same connection but from 2 different machines&lt;/P&gt;&lt;P&gt;QVD generated from the laptop&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Data from PSTM2.jpg" class="jive-image image-3" src="/legacyfs/online/151575_Data from PSTM2.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QVD generated on the QV server&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="151573" alt="Data from server2.jpg" class="jive-image image-2" src="/legacyfs/online/151573_Data from server2.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2017 11:33:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269595#M622718</guid>
      <dc:creator>waszcma1</dc:creator>
      <dc:date>2017-02-01T11:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal issue while fetching data into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269596#M622719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think that the storing into a qvd removed the decimals else that those data aren't loaded correctly into qlikview. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At first I would check the data directly within a tablebox after loading into qlikview. Then I would use &lt;STRONG&gt;text(u_hours) as u_hours&lt;/STRONG&gt; within the preceeding part. Aften them I would force these field to be alpha-numeric value within the SQL-part with something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;"a - " &amp;amp; "u_hours" &amp;amp; " - x" as "u_hours"&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If then the "u_hours" part from the string is without decimals you should really look to the odbc-driver and update them or maybe there are also another odbc/&lt;STRONG&gt;oledb&lt;/STRONG&gt;-driver available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2017 12:33:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269596#M622719</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2017-02-01T12:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal issue while fetching data into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269597#M622720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;Marek Waszczak wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;I did it for purpose&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Converting numeric value to the char we have no doubt how to display this value and shows it as a text so there is no way that the numbers after coma can gone.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I don't fully understood this approach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would suggest to read in numbers as numbers and handle formatting on the QV side, i.e. remove the CAST()&amp;nbsp; from your DB SELECT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2017 12:37:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269597#M622720</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2017-02-01T12:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal issue while fetching data into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269598#M622722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have load and joined the data from 2 qvds one was generated on laptop and one from the server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is no doubt that on the server all numbers after dot are missing while is loaded via ODBC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Feb 2017 22:04:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269598#M622722</guid>
      <dc:creator>waszcma1</dc:creator>
      <dc:date>2017-02-05T22:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal issue while fetching data into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269599#M622723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The new version of ODBC has been installed on the QV server the problem is not occurring anymore.&lt;/P&gt;&lt;P&gt;Problem solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2017 12:05:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Decimal-issue-while-fetching-data-into-QVD-file/m-p/1269599#M622723</guid>
      <dc:creator>waszcma1</dc:creator>
      <dc:date>2017-02-15T12:05:39Z</dc:date>
    </item>
  </channel>
</rss>

