<?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: Load From SQL Server Fail in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-From-SQL-Server-Fail/m-p/1510599#M750147</link>
    <description>&lt;P&gt;If you run your select query against your database directly, not from QlikView, do you get records&amp;nbsp;returned with NULL&amp;nbsp;values in&amp;nbsp;field5?&lt;/P&gt;&lt;P&gt;SELECT&amp;nbsp;&lt;SPAN&gt;field1,&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;field2&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;field3&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;field4&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;field5&lt;/SPAN&gt;&lt;BR /&gt;FROM&amp;nbsp;Table WHERE&amp;nbsp;field5 is not null;&lt;/P&gt;</description>
    <pubDate>Wed, 21 Nov 2018 18:00:04 GMT</pubDate>
    <dc:creator>Colin-Albert</dc:creator>
    <dc:date>2018-11-21T18:00:04Z</dc:date>
    <item>
      <title>Load From SQL Server Fail</title>
      <link>https://community.qlik.com/t5/QlikView/Load-From-SQL-Server-Fail/m-p/1509627#M750144</link>
      <description>&lt;P&gt;Good Morning&lt;/P&gt;&lt;P&gt;I'm having a problem with the loading of some data from SQL server, here the query:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;field1,&lt;BR /&gt;&lt;SPAN&gt;field2&lt;/SPAN&gt;,&lt;BR /&gt;&lt;SPAN&gt;field3&lt;/SPAN&gt;,&lt;BR /&gt;&lt;SPAN&gt;field4&lt;/SPAN&gt;,&lt;BR /&gt;&lt;SPAN&gt;field5&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;[Table Name]:&lt;BR /&gt;SELECT&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;field1,&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;field2&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;field3&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;field4&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;field5&lt;/SPAN&gt;&lt;BR /&gt;FROM&amp;nbsp;Table WHERE&amp;nbsp;field5 is not null;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If i visualize the table i can found all the field with field5 value NULL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If from GUI i select "hide null value" the data disappear&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-From-SQL-Server-Fail/m-p/1509627#M750144</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Load From SQL Server Fail</title>
      <link>https://community.qlik.com/t5/QlikView/Load-From-SQL-Server-Fail/m-p/1509679#M750145</link>
      <description>Hi&lt;BR /&gt;Qlikview have an Option in presentation layer to "Hide Null Value " based in the Field added in Dimension , since load table in the script is combination of subset for 5 fields in 1 table&lt;BR /&gt;You can check the CTRL + T ( table viewer) .&lt;BR /&gt;&lt;BR /&gt;LOAD id, first_name, last_name, email, gender, City, [Purchase Date], [Car Model]&lt;BR /&gt;FROM [..\Downloads\MOCK_DATA.csv] (txt, utf8, embedded labels, delimiter is ',', msq)&lt;BR /&gt;WHERE(not IsNull([Purchase Date]));&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Nov 2018 12:19:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-From-SQL-Server-Fail/m-p/1509679#M750145</guid>
      <dc:creator>Umesh</dc:creator>
      <dc:date>2018-11-20T12:19:44Z</dc:date>
    </item>
    <item>
      <title>Re: Load From SQL Server Fail</title>
      <link>https://community.qlik.com/t5/QlikView/Load-From-SQL-Server-Fail/m-p/1510106#M750146</link>
      <description>&lt;P&gt;Hi Feda,&lt;/P&gt;&lt;P&gt;You can try like this as well, but you have to be careful while putting a 'where' condition since it might omit relevant information from other fields.&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;field1,&lt;BR /&gt;&lt;SPAN&gt;field2&lt;/SPAN&gt;,&lt;BR /&gt;&lt;SPAN&gt;field3&lt;/SPAN&gt;,&lt;BR /&gt;&lt;SPAN&gt;field4&lt;/SPAN&gt;,&lt;BR /&gt;&lt;SPAN&gt;field5&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;[Table Name]:&lt;BR /&gt;SELECT&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;field1,&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;field2&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;field3&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;field4&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;field5&lt;/SPAN&gt;&lt;BR /&gt;FROM&amp;nbsp;Table&lt;/P&gt;&lt;P&gt;WHERE len(trim(field5))&amp;gt;0;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 05:48:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-From-SQL-Server-Fail/m-p/1510106#M750146</guid>
      <dc:creator>jyothish8807</dc:creator>
      <dc:date>2018-11-21T05:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: Load From SQL Server Fail</title>
      <link>https://community.qlik.com/t5/QlikView/Load-From-SQL-Server-Fail/m-p/1510599#M750147</link>
      <description>&lt;P&gt;If you run your select query against your database directly, not from QlikView, do you get records&amp;nbsp;returned with NULL&amp;nbsp;values in&amp;nbsp;field5?&lt;/P&gt;&lt;P&gt;SELECT&amp;nbsp;&lt;SPAN&gt;field1,&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;field2&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;field3&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;field4&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;field5&lt;/SPAN&gt;&lt;BR /&gt;FROM&amp;nbsp;Table WHERE&amp;nbsp;field5 is not null;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 18:00:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-From-SQL-Server-Fail/m-p/1510599#M750147</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2018-11-21T18:00:04Z</dc:date>
    </item>
  </channel>
</rss>

