<?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 Extracting data from Memo fields in SQL in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Extracting-data-from-Memo-fields-in-SQL/m-p/298310#M110649</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steven,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QlikView can read memo fields so it really depends on the way the data is in the field and what you need to get out of it.&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;&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Jan 2012 10:40:22 GMT</pubDate>
    <dc:creator>stephencredmond</dc:creator>
    <dc:date>2012-01-23T10:40:22Z</dc:date>
    <item>
      <title>Extracting data from Memo fields in SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Extracting-data-from-Memo-fields-in-SQL/m-p/298309#M110648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to extract a piece of information from a memo/blob field in SQL, can Qlikview do this and if so does anybody know the way to go about doing this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Steven Prentice&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2012 10:35:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extracting-data-from-Memo-fields-in-SQL/m-p/298309#M110648</guid>
      <dc:creator />
      <dc:date>2012-01-23T10:35:41Z</dc:date>
    </item>
    <item>
      <title>Extracting data from Memo fields in SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Extracting-data-from-Memo-fields-in-SQL/m-p/298310#M110649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steven,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QlikView can read memo fields so it really depends on the way the data is in the field and what you need to get out of it.&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;&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2012 10:40:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extracting-data-from-Memo-fields-in-SQL/m-p/298310#M110649</guid>
      <dc:creator>stephencredmond</dc:creator>
      <dc:date>2012-01-23T10:40:22Z</dc:date>
    </item>
    <item>
      <title>Extracting data from Memo fields in SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Extracting-data-from-Memo-fields-in-SQL/m-p/298311#M110650</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;Thanks very much. Basically the memo field is just broken up into different section access defined by [ ]. I need to extract the information beneath one of these headers only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do you load blob fields into Qlikview? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I select Blobs on the load, it sayd Blobs not supported with this type of connection, SQL OLE DB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Steven&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2012 11:07:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extracting-data-from-Memo-fields-in-SQL/m-p/298311#M110650</guid>
      <dc:creator />
      <dc:date>2012-01-23T11:07:55Z</dc:date>
    </item>
    <item>
      <title>Extracting data from Memo fields in SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Extracting-data-from-Memo-fields-in-SQL/m-p/298312#M110651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steven,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know what version of the SQL driver you are using but I don't remember ever having issues with TEXT fields.&amp;nbsp; Perhaps make sure that you are using the latest SQL Native client driver.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might have a problem with non TEXT blob fields such as image.&amp;nbsp; Then you will need to craft your SQL to return text.&amp;nbsp; Something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT ID, CONVERT(Varchar(1024), convert(varbinary(1024),BLOB_FIELD)) as BLOB_FIELD FROM [dbo].[Blob_Table];&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2012 11:25:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extracting-data-from-Memo-fields-in-SQL/m-p/298312#M110651</guid>
      <dc:creator>stephencredmond</dc:creator>
      <dc:date>2012-01-23T11:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting data from Memo fields in SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Extracting-data-from-Memo-fields-in-SQL/m-p/298313#M110652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a similar issue- I am reading Oracle DB through OLE DB.&amp;nbsp; I have a field that is a BLOB.&amp;nbsp; I am able to read it into QV but it is still encoded.&amp;nbsp; How do I decode/convert to text so that I can parse the field?&amp;nbsp; (BTW...I tried the CONVERT above and got an error.)&amp;nbsp; Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Jun 2013 19:24:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extracting-data-from-Memo-fields-in-SQL/m-p/298313#M110652</guid>
      <dc:creator />
      <dc:date>2013-06-28T19:24:37Z</dc:date>
    </item>
  </channel>
</rss>

