<?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: SQL coding error ignored in refresh in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/SQL-coding-error-ignored-in-refresh/m-p/410256#M700524</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The select statement is not something qlikview parses, but just something that it hands to the dbms (in your case Oracle) to execute. Qlikview itself doesn't understand any of the multitude of sql dialects. Therefore it can't catch any errors. So, always try out your sql statements on the database yourself first. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Oct 2012 18:53:08 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2012-10-12T18:53:08Z</dc:date>
    <item>
      <title>SQL coding error ignored in refresh</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-coding-error-ignored-in-refresh/m-p/410255#M700523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Community&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a SQL select from an OLEDB connection Oracle with a deliberate error.&amp;nbsp; The syntax checker does not find this but more worrying is the fact that the script executes and just ignores the code entirely.&amp;nbsp; The log of the reload also shows up nothing.&amp;nbsp; I am using QV 11 SP1 ... anyone got any suggestions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;Test:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;SELECT &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt; p.PROJECT_ID AS ProjectId, &lt;/SPAN&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;p.PROJECT_NAME AS ProjectName, &lt;/SPAN&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;p.DISPLAY_STATUS AS Phase,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt; CASE&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;&amp;nbsp; WHEN k.request_type_id IN (30281, 30462,30431)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;&amp;nbsp; THEN 'Simple Projects'&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;&amp;nbsp; ELSE 'GCM Projects'&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; END AS Methodology&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;FROM&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt; KCRT_FG_PFM_PROJECT k, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt; PM_PROJECTS p,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt; KCRT_REQ_HEADER_DETAILS kc&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;WHERE&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt; k.PRJ_PROJECT_ID = p.PROJECT_ID&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt; AND p.STATUS = 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt; AND p.DISPLAY_STATUS NOT IN ('On Hold')&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt; AND &lt;SPAN style="text-decoration: underline;"&gt;kcbadbadbad&lt;/SPAN&gt;.REQUEST_ID = p.PFM_REQUEST_ID ;&amp;nbsp;&amp;nbsp; // &amp;lt;-- spot the deliberate &lt;/SPAN&gt;&lt;SPAN style="text-decoration: underline;"&gt;error&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;Ian&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2012 18:33:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-coding-error-ignored-in-refresh/m-p/410255#M700523</guid>
      <dc:creator />
      <dc:date>2012-10-12T18:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: SQL coding error ignored in refresh</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-coding-error-ignored-in-refresh/m-p/410256#M700524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The select statement is not something qlikview parses, but just something that it hands to the dbms (in your case Oracle) to execute. Qlikview itself doesn't understand any of the multitude of sql dialects. Therefore it can't catch any errors. So, always try out your sql statements on the database yourself first. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2012 18:53:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-coding-error-ignored-in-refresh/m-p/410256#M700524</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2012-10-12T18:53:08Z</dc:date>
    </item>
    <item>
      <title>Re: SQL coding error ignored in refresh</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-coding-error-ignored-in-refresh/m-p/410257#M700525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for this... makes sense&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2012 08:55:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-coding-error-ignored-in-refresh/m-p/410257#M700525</guid>
      <dc:creator />
      <dc:date>2012-10-15T08:55:08Z</dc:date>
    </item>
  </channel>
</rss>

