<?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 AW:Re: AW:Load .qvd in Oracle SQl where question in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-qvd-in-Oracle-SQl-where-question/m-p/166187#M38217</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can use it in the LOAD clause but the loading time is vastly longer so I am loosing the benefit. If I cant get it to work I will have to that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Aug 2009 20:12:44 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-08-26T20:12:44Z</dc:date>
    <item>
      <title>Load .qvd in Oracle SQl where question</title>
      <link>https://community.qlik.com/t5/QlikView/Load-qvd-in-Oracle-SQl-where-question/m-p/166183#M38213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I have a number of IDs stored in a .qvd file. Now I want to Load more data for all these IDs from a Oracle database. I was thinking about doing it like this:&lt;BR /&gt;&lt;BR /&gt;tSALES:&lt;BR /&gt;LOAD&lt;BR /&gt;..&lt;BR /&gt;ID,&lt;BR /&gt;..;&lt;BR /&gt;SQL SELECT&lt;BR /&gt;..&lt;BR /&gt;ID,&lt;BR /&gt;..&lt;BR /&gt;FROM IFSAPP."CASH_RECEIPT_LINE_JOIN" where ID IN (LOAD ID from 'qvd\tMISSING_IDS.qvd' (qvd));&lt;BR /&gt;&lt;BR /&gt;The problem is that the IN statement in Oracle is not accepting loading a .qvd file.&lt;BR /&gt;I believe the answer to this would be to load tMISSING_IDS.qvd, see example below, first and then access the values like an array of variables. Something that makes it look like a list of numbers to Oracle and not a .qvd file.&lt;BR /&gt;I know I can do this when I use variables.&lt;BR /&gt;&lt;BR /&gt;Here is the qvd loaded as usual.&lt;BR /&gt;tMissingID:&lt;BR /&gt;LOAD ID from 'qvd\tMISSING_IDS.qvd' (qvd);&lt;BR /&gt;&lt;BR /&gt;Thanks for help, let me know if the post was understandable. Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2009 21:49:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-qvd-in-Oracle-SQl-where-question/m-p/166183#M38213</guid>
      <dc:creator />
      <dc:date>2009-08-25T21:49:42Z</dc:date>
    </item>
    <item>
      <title>AW:Load .qvd in Oracle SQl where question</title>
      <link>https://community.qlik.com/t5/QlikView/Load-qvd-in-Oracle-SQl-where-question/m-p/166184#M38214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;if I understand correctly, a solution to your problem would be:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Load IDs from the missing_IDS.qvd into a TEMP-Table, using ID as a key&lt;/LI&gt;&lt;LI&gt;NOCONCATENATE Load data for tSALES from Oracle, using WHERE exists()&lt;/LI&gt;&lt;LI&gt;Delete TEMP-Table&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;If you need further assistance, I can post a demo.&lt;/P&gt;&lt;P&gt;Rgds,&lt;BR /&gt;Joachim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2009 23:52:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-qvd-in-Oracle-SQl-where-question/m-p/166184#M38214</guid>
      <dc:creator>biester</dc:creator>
      <dc:date>2009-08-25T23:52:07Z</dc:date>
    </item>
    <item>
      <title>AW:Load .qvd in Oracle SQl where question</title>
      <link>https://community.qlik.com/t5/QlikView/Load-qvd-in-Oracle-SQl-where-question/m-p/166185#M38215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin:0cm 0cm 0pt;"&gt;Hi Joachim, thanks for your answer. It seems like Oracle wants a sub query inside the parenthesis when you use the Exists() statement. I agree with the logic you wrote but still cant get it to work. If you have a demo it would be wonderful. Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2009 16:20:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-qvd-in-Oracle-SQl-where-question/m-p/166185#M38215</guid>
      <dc:creator />
      <dc:date>2009-08-26T16:20:18Z</dc:date>
    </item>
    <item>
      <title>AW:Re: AW:Load .qvd in Oracle SQl where question</title>
      <link>https://community.qlik.com/t5/QlikView/Load-qvd-in-Oracle-SQl-where-question/m-p/166186#M38216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ludvig,&lt;/P&gt;&lt;P&gt;I tried to build an environment similar to yours so you only have to modify few things (Oracle connect, path to QVD, Oracle scheme). Have a look at it and see if you're getting it to work.&lt;/P&gt;&lt;P&gt;Main thing I suppose is that you have to use the "WHERE EXISTS" in the LOAD-Clause, NOT in the SQL SELECT-Clause!&lt;/P&gt;&lt;P&gt;Rgds,&lt;BR /&gt;Joachim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2009 16:39:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-qvd-in-Oracle-SQl-where-question/m-p/166186#M38216</guid>
      <dc:creator>biester</dc:creator>
      <dc:date>2009-08-26T16:39:41Z</dc:date>
    </item>
    <item>
      <title>AW:Re: AW:Load .qvd in Oracle SQl where question</title>
      <link>https://community.qlik.com/t5/QlikView/Load-qvd-in-Oracle-SQl-where-question/m-p/166187#M38217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can use it in the LOAD clause but the loading time is vastly longer so I am loosing the benefit. If I cant get it to work I will have to that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2009 20:12:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-qvd-in-Oracle-SQl-where-question/m-p/166187#M38217</guid>
      <dc:creator />
      <dc:date>2009-08-26T20:12:44Z</dc:date>
    </item>
  </channel>
</rss>

