<?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: QV11_SR2 loads incomplete data  from SQL Server table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/QV11-SR2-loads-incomplete-data-from-SQL-Server-table/m-p/522179#M693170</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Percy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not an issue. QlikView does not have data types, all values are interpreted and represented either numeric or literal, or both (dual). When you want a field to be loaded into QlikView as it comes from the database (literal), regardless its type in the source, use the Text() function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13747085159632629" jivemacro_uid="_13747085159632629"&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD Text(Value) AS Value; // will keep preceding zeroes&lt;/P&gt;&lt;P&gt;SQL SELECT Value &lt;/P&gt;&lt;P&gt;FROM dbo.Table;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Jul 2013 23:30:01 GMT</pubDate>
    <dc:creator>Miguel_Angel_Baeyens</dc:creator>
    <dc:date>2013-07-24T23:30:01Z</dc:date>
    <item>
      <title>QV11_SR2 loads incomplete data  from SQL Server table</title>
      <link>https://community.qlik.com/t5/QlikView/QV11-SR2-loads-incomplete-data-from-SQL-Server-table/m-p/522178#M693169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all. I have a table in a &lt;SPAN style="font-size: 10pt;"&gt;SQL Server DB, with 7 million of rows. When my QV App loads this table, I notice that some values from a specific field (type: char(8)) are incomplete. I mean, e.g. &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;these values from my SQL table: '&lt;/SPAN&gt;00226303', '00835842', '01004089', appears in QV as &lt;SPAN style="font-size: 10pt;"&gt;'&lt;/SPAN&gt;226303', '0835842', '1004089'.&lt;/P&gt;&lt;P&gt;I'm worry about this, because there are more cases and I use that field for identification purposes.&lt;/P&gt;&lt;P&gt;I use QlikView 11.00.11414.0 SR2 64-bit&lt;/P&gt;&lt;P&gt;Does exist any patch to fix this issue? I'll be appreciated for any help.&lt;/P&gt;&lt;P&gt;Thanks in advance. &lt;/P&gt;&lt;P&gt;GBY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Percy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jul 2013 23:22:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QV11-SR2-loads-incomplete-data-from-SQL-Server-table/m-p/522178#M693169</guid>
      <dc:creator>pgamarra</dc:creator>
      <dc:date>2013-07-24T23:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: QV11_SR2 loads incomplete data  from SQL Server table</title>
      <link>https://community.qlik.com/t5/QlikView/QV11-SR2-loads-incomplete-data-from-SQL-Server-table/m-p/522179#M693170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Percy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not an issue. QlikView does not have data types, all values are interpreted and represented either numeric or literal, or both (dual). When you want a field to be loaded into QlikView as it comes from the database (literal), regardless its type in the source, use the Text() function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13747085159632629" jivemacro_uid="_13747085159632629"&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD Text(Value) AS Value; // will keep preceding zeroes&lt;/P&gt;&lt;P&gt;SQL SELECT Value &lt;/P&gt;&lt;P&gt;FROM dbo.Table;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jul 2013 23:30:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QV11-SR2-loads-incomplete-data-from-SQL-Server-table/m-p/522179#M693170</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2013-07-24T23:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: QV11_SR2 loads incomplete data  from SQL Server table</title>
      <link>https://community.qlik.com/t5/QlikView/QV11-SR2-loads-incomplete-data-from-SQL-Server-table/m-p/522180#M693171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Miguel. It works.&lt;/P&gt;&lt;P&gt;By the way, this is the first time that I face this issue. I've never used the text() function to load values because all data that my QV apps loaded, were complete and similar to their sources. It seems that, from now on, I have to use text() to load sensible data.&amp;nbsp; &lt;/P&gt;&lt;P&gt;Just in case, do you know if this issue is related to this QV version?&lt;/P&gt;&lt;P&gt;GBY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Percy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jul 2013 00:30:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QV11-SR2-loads-incomplete-data-from-SQL-Server-table/m-p/522180#M693171</guid>
      <dc:creator>pgamarra</dc:creator>
      <dc:date>2013-07-25T00:30:25Z</dc:date>
    </item>
  </channel>
</rss>

