<?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: Loading data with Polish characters from QVD these are gone in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Loading-data-with-Polish-characters-from-QVD-these-are-gone/m-p/1228815#M2367</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could this have something to do with issue QLIK-67044?&lt;BR /&gt;The customer is now using Qlik Sense 3.1.x&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Mar 2017 13:30:42 GMT</pubDate>
    <dc:creator>flaurntiu</dc:creator>
    <dc:date>2017-03-29T13:30:42Z</dc:date>
    <item>
      <title>Loading data with Polish characters from QVD these are gone</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Loading-data-with-Polish-characters-from-QVD-these-are-gone/m-p/1228814#M2366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Currently we have a customer that uses Polish characters in their SQL database. These are shown in the result set when running SQL Select statements.&lt;/P&gt;&lt;P&gt;When using the same select directly in Qlik Sense, the characters are shown in Qlik Sense apps.&lt;/P&gt;&lt;P&gt;When the data is loaded from SQL in a Qlik sense App and then written to a QVD file, the Polish characters seem to be gone. Retrieving the QVD contents using Q-Eye will not show these characters. Loading data from the QVD into a Qlik Sense app does not show the characters.&lt;/P&gt;&lt;P&gt;I have seen this remotely and am waiting on the customer SQL database to be uploaded for further testing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know how to fix this? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Mar 2017 09:32:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Loading-data-with-Polish-characters-from-QVD-these-are-gone/m-p/1228814#M2366</guid>
      <dc:creator>flaurntiu</dc:creator>
      <dc:date>2017-03-17T09:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Loading data with Polish characters from QVD these are gone</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Loading-data-with-Polish-characters-from-QVD-these-are-gone/m-p/1228815#M2367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could this have something to do with issue QLIK-67044?&lt;BR /&gt;The customer is now using Qlik Sense 3.1.x&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2017 13:30:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Loading-data-with-Polish-characters-from-QVD-these-are-gone/m-p/1228815#M2367</guid>
      <dc:creator>flaurntiu</dc:creator>
      <dc:date>2017-03-29T13:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: Loading data with Polish characters from QVD these are gone</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Loading-data-with-Polish-characters-from-QVD-these-are-gone/m-p/1228816#M2368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I seem to have found the cause for this. &lt;BR /&gt;When loading the data from the SQL server, it can be in several code pages. When the SQL field contains special characters it will load them properly when read from the database. However if the data is not in Unicode format (e.g. nvarchar, nchar, etc.)&amp;nbsp; the data will not be stored properly into a QVD file. The special characters will be substituted by a non-Unicode counterpart.This means that the character 'Ł' will be replaced by 'L', 'ą' by 'a' and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore you will n&lt;SPAN style="font-size: 13.3333px;"&gt;eed to rewrite the SQL queries to cast or convert the text fields to Unicode format. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;An example:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; &lt;IMG alt="load accounts sample.png" class="jive-image image-1" src="/legacyfs/online/158240_load accounts sample.png" style="height: 466px; width: 620px;" /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;This results in the following QVD contents (part of) for the Accounts1 table without Unicode:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Accounts1_qvd file.png" class="jive-image image-2" src="/legacyfs/online/158245_Accounts1_qvd file.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;This results in the following QVD contents (part of) for the Accounts2 table with Unicode:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Accounts2_qvd file.png" class="jive-image image-3" src="/legacyfs/online/158246_Accounts2_qvd file.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;As you can see the second file keeps the special characters, as they are recognized as unicode characters and stored properly in the QVD.&lt;BR /&gt;Hope this helps others running into this issue as well.&lt;BR /&gt;Have fun Qlik-ing around &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2017 08:48:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Loading-data-with-Polish-characters-from-QVD-these-are-gone/m-p/1228816#M2368</guid>
      <dc:creator>flaurntiu</dc:creator>
      <dc:date>2017-03-30T08:48:57Z</dc:date>
    </item>
  </channel>
</rss>

