<?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: Reading BLOBS from Oracle into QV11 in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Reading-BLOBS-from-Oracle-into-QV11/m-p/1005632#M341632</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I tried the solution and it doesn't work on Access Point with IE Plugin.&amp;nbsp; The reason why it doesnt work is because the path is relative to the computer you are using.&amp;nbsp; The file opened fine when using the brower on the server that was hosting Access Point, however when I tried the link from my own pc it said "failed to open".&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Sep 2015 16:10:42 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-09-24T16:10:42Z</dc:date>
    <item>
      <title>Reading BLOBS from Oracle into QV11</title>
      <link>https://community.qlik.com/t5/QlikView/Reading-BLOBS-from-Oracle-into-QV11/m-p/1005626#M341626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The proof of concept I am attempting to create has 2 parts&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;A QV11 app loads a BLOB from Oracle which is a pdf file&lt;/LI&gt;&lt;LI&gt;The pdf will then be able to be downloaded from the QV app.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Are either of these possible with standard QV functionality?&amp;nbsp; This qvw will be accessible off of Access Point and the users do have the ability to use the IE Plugin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Jake&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 15:48:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reading-BLOBS-from-Oracle-into-QV11/m-p/1005626#M341626</guid>
      <dc:creator />
      <dc:date>2015-09-09T15:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: Reading BLOBS from Oracle into QV11</title>
      <link>https://community.qlik.com/t5/QlikView/Reading-BLOBS-from-Oracle-into-QV11/m-p/1005627#M341627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe using some macro to convert (depending on the format) and store the blob data as pdf file to disk could be a solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One example could be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load script&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14418397074389035" jivemacro_uid="_14418397074389035"&gt;
&lt;P&gt;tabPDF:&lt;/P&gt;
&lt;P&gt;LOAD *,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo() as PDFid,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; len(PDFdata) as LenPDFdata,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OctetStringToFile(PDFdata, PDFfile) as ResultOctetStringToFile;&lt;/P&gt;
&lt;P&gt;LOAD @1 as PDFdata,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'C:\temp\PDF-File'&amp;amp;RecNo()&amp;amp;'.pdf' as PDFfile&lt;/P&gt;
&lt;P&gt;FROM &lt;C&gt; (txt, codepage is 1252, no labels, delimiter is '\t', msq);&lt;/C&gt;&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VBS module&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14418397539384431" jivemacro_uid="_14418397539384431"&gt;
&lt;P&gt;Function OctetStringToFile(OctetString, FilePath)&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Const adTypeText = 2&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Const adSaveCreateOverWrite = 2&lt;/P&gt;
&lt;P&gt;&amp;nbsp; LenData = Len(OctetString)\2 + Len(OctetString) Mod 2&lt;/P&gt;
&lt;P&gt;&amp;nbsp; set fso = createobject("scripting.filesystemobject")&lt;/P&gt;
&lt;P&gt;&amp;nbsp; set stream = createobject("adodb.stream")&lt;/P&gt;
&lt;P&gt;&amp;nbsp; stream.type = adTypeText&lt;/P&gt;
&lt;P&gt;&amp;nbsp; stream.charset = "windows-1252"&lt;/P&gt;
&lt;P&gt;&amp;nbsp; stream.open&lt;/P&gt;
&lt;P&gt;&amp;nbsp; For i = 0 to LenData-1&lt;/P&gt;
&lt;P&gt;&amp;nbsp; stream.writetext chr(CByte("&amp;amp;h" &amp;amp; Mid(OctetString, i*2+1, 2)))&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Next&lt;/P&gt;
&lt;P&gt;&amp;nbsp; stream.savetofile FilePath, adSaveCreateOverWrite&lt;/P&gt;
&lt;P&gt;&amp;nbsp; stream.close&lt;/P&gt;
&lt;P&gt;&amp;nbsp; OctetStringToFile = "processed"&lt;/P&gt;
&lt;P&gt;End Function&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="98458" alt="QlikCommunity_Thread_179838_Pic1.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/98458_QlikCommunity_Thread_179838_Pic1.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="98465" alt="QlikCommunity_Thread_179838_Pic2.JPG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/98465_QlikCommunity_Thread_179838_Pic2.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="98466" alt="QlikCommunity_Thread_179838_Pic3.JPG" class="jive-image image-3" src="https://community.qlik.com/legacyfs/online/98466_QlikCommunity_Thread_179838_Pic3.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="98467" alt="QlikCommunity_Thread_179838_Pic4.JPG" class="image-4 jive-image" src="https://community.qlik.com/legacyfs/online/98467_QlikCommunity_Thread_179838_Pic4.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 23:05:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reading-BLOBS-from-Oracle-into-QV11/m-p/1005627#M341627</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-09-09T23:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: Reading BLOBS from Oracle into QV11</title>
      <link>https://community.qlik.com/t5/QlikView/Reading-BLOBS-from-Oracle-into-QV11/m-p/1005628#M341628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might have to adjust your macro security settings&amp;nbsp; in the edit module window to be able to execute the vbs function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2015 06:57:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reading-BLOBS-from-Oracle-into-QV11/m-p/1005628#M341628</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-09-10T06:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: Reading BLOBS from Oracle into QV11</title>
      <link>https://community.qlik.com/t5/QlikView/Reading-BLOBS-from-Oracle-into-QV11/m-p/1005629#M341629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marco -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&amp;nbsp; How confident are you that this solution would work on Access Point (while using IE Plugin)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Jake&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2015 13:30:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reading-BLOBS-from-Oracle-into-QV11/m-p/1005629#M341629</guid>
      <dc:creator />
      <dc:date>2015-09-10T13:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: Reading BLOBS from Oracle into QV11</title>
      <link>https://community.qlik.com/t5/QlikView/Reading-BLOBS-from-Oracle-into-QV11/m-p/1005630#M341630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't see why the application should not work when published to server.&lt;/P&gt;&lt;P&gt;The table/link part is pretty straight forward while the tricky part is done during the script execution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2015 21:22:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reading-BLOBS-from-Oracle-into-QV11/m-p/1005630#M341630</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-09-10T21:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: Reading BLOBS from Oracle into QV11</title>
      <link>https://community.qlik.com/t5/QlikView/Reading-BLOBS-from-Oracle-into-QV11/m-p/1005631#M341631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Marco&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm just experiencing a limit of 16k on the "long varbinary" field. So for small files your solution works but for "long varbinary" &amp;gt; 16k I'm loosing data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Valerio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 12:38:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reading-BLOBS-from-Oracle-into-QV11/m-p/1005631#M341631</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-21T12:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: Reading BLOBS from Oracle into QV11</title>
      <link>https://community.qlik.com/t5/QlikView/Reading-BLOBS-from-Oracle-into-QV11/m-p/1005632#M341632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I tried the solution and it doesn't work on Access Point with IE Plugin.&amp;nbsp; The reason why it doesnt work is because the path is relative to the computer you are using.&amp;nbsp; The file opened fine when using the brower on the server that was hosting Access Point, however when I tried the link from my own pc it said "failed to open".&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 16:10:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reading-BLOBS-from-Oracle-into-QV11/m-p/1005632#M341632</guid>
      <dc:creator />
      <dc:date>2015-09-24T16:10:42Z</dc:date>
    </item>
  </channel>
</rss>

