<?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 Oracle -&amp;gt; WHERE Clause -&amp;gt; Date Question in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Oracle-gt-WHERE-Clause-gt-Date-Question/m-p/142772#M22165</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bastian,&lt;/P&gt;&lt;P&gt;The safe way to get rid of this sort of problems is to use the preceeding load:&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;LOAD&lt;BR /&gt;...&lt;BR /&gt;WHERE "SALES_TAG_SOR"."DATUM" &amp;gt;= '01.03.2009' // if this is your format in QV&lt;BR /&gt;SQL SELECT *&lt;BR /&gt;FROM "GLB_RPT"."SALES_TAG_SOR";&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Regards,&lt;BR /&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Apr 2009 20:20:53 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-04-29T20:20:53Z</dc:date>
    <item>
      <title>Oracle -&gt; WHERE Clause -&gt; Date Question</title>
      <link>https://community.qlik.com/t5/QlikView/Oracle-gt-WHERE-Clause-gt-Date-Question/m-p/142769#M22162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I want to query a table in QlikView with the following SQL Statement over an OLEDB Oracle connection:&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;BR /&gt;FROM "GLB_RPT"."SALES_TAG_SOR"&lt;BR /&gt;WHERE "SALES_TAG_SOR"."DATUM" &amp;gt;= '01.03.2009';&lt;/P&gt;&lt;P&gt;But I got all records.&lt;/P&gt;&lt;P&gt;How must the statement look like? Must I use to_date?&lt;/P&gt;&lt;P&gt;Thanks for help&lt;/P&gt;&lt;P&gt;Bastian&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 19:58:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Oracle-gt-WHERE-Clause-gt-Date-Question/m-p/142769#M22162</guid>
      <dc:creator>btrompetter</dc:creator>
      <dc:date>2009-04-29T19:58:29Z</dc:date>
    </item>
    <item>
      <title>Oracle -&gt; WHERE Clause -&gt; Date Question</title>
      <link>https://community.qlik.com/t5/QlikView/Oracle-gt-WHERE-Clause-gt-Date-Question/m-p/142770#M22163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bastian,&lt;/P&gt;&lt;P&gt;What is the native date format of DATUM in the database?&lt;/P&gt;&lt;P&gt;Reagrds,&lt;/P&gt;&lt;P&gt;Gordon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 20:05:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Oracle-gt-WHERE-Clause-gt-Date-Question/m-p/142770#M22163</guid>
      <dc:creator />
      <dc:date>2009-04-29T20:05:47Z</dc:date>
    </item>
    <item>
      <title>Oracle -&gt; WHERE Clause -&gt; Date Question</title>
      <link>https://community.qlik.com/t5/QlikView/Oracle-gt-WHERE-Clause-gt-Date-Question/m-p/142771#M22164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I change it to&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;BR /&gt;FROM "GLB_RPT"."SALES_TAG_SOR"&lt;BR /&gt;where (DATUM) &amp;gt;= (to_date('01.03.2009','DD.MM.YYYY'));&lt;/P&gt;&lt;P&gt;it works&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Bastian&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 20:17:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Oracle-gt-WHERE-Clause-gt-Date-Question/m-p/142771#M22164</guid>
      <dc:creator>btrompetter</dc:creator>
      <dc:date>2009-04-29T20:17:55Z</dc:date>
    </item>
    <item>
      <title>Oracle -&gt; WHERE Clause -&gt; Date Question</title>
      <link>https://community.qlik.com/t5/QlikView/Oracle-gt-WHERE-Clause-gt-Date-Question/m-p/142772#M22165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bastian,&lt;/P&gt;&lt;P&gt;The safe way to get rid of this sort of problems is to use the preceeding load:&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;LOAD&lt;BR /&gt;...&lt;BR /&gt;WHERE "SALES_TAG_SOR"."DATUM" &amp;gt;= '01.03.2009' // if this is your format in QV&lt;BR /&gt;SQL SELECT *&lt;BR /&gt;FROM "GLB_RPT"."SALES_TAG_SOR";&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Regards,&lt;BR /&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 20:20:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Oracle-gt-WHERE-Clause-gt-Date-Question/m-p/142772#M22165</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-04-29T20:20:53Z</dc:date>
    </item>
  </channel>
</rss>

