<?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 OLE OBJECT in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/OLE-OBJECT/m-p/1722096#M451883</link>
    <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;I am having a challenge that is only exacerbated by remote working. Basically I point the below script at a data source and it creates a QVD for every table. The issue I have is that I have a table that generates a 7.3GB QVD with a 108 thousand records. The next largest QVD is 77 MB and has just over a million records. In looking at the raw data 6 columns and 108 thousand rows I see one of them is an OLE Object.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there anything I can do to avoid this issue/challenge.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using Qlikview April 2019 SR1 - Don't recall this being an issue on older versions although never an issue while in the office.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;OLEDB CONNECT TO [Provider=OraOLEDB.Oracle.1;Persist Security Info=True;User ID=owner_cdg;Data Source=PCD2;Extended Properties="FetchSize=10000"] (XPassword is FBKNXXdOOLZEXPNMEbZWP);&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;OracleTableList:&lt;BR /&gt;SQL&lt;BR /&gt;select TABLE_NAME, OWNER from all_tables&lt;BR /&gt;where owner='OWNER_CDG'; // change the owner/schema&lt;BR /&gt;&lt;BR /&gt;Let vTableCount = NoOfRows('OracleTableList');&lt;BR /&gt;&lt;BR /&gt;For i = 0 To $(vTableCount) -1&lt;BR /&gt;LET vMyTableName = Peek('OWNER', $(i), 'OracleTableList') &amp;amp; '.' &amp;amp; Peek('TABLE_NAME', $(i), 'OracleTableList');&lt;BR /&gt;LET vMyTableNameQVD = Replace(Peek('TABLE_NAME', $(i), 'OracleTableList'), ' ', '_');&lt;BR /&gt;&lt;BR /&gt;$(vMyTableNameQVD):&lt;BR /&gt;SQL SELECT * FROM $(vMyTableName) ;&lt;BR /&gt;STORE $(vMyTableNameQVD) INTO QVD\$(ExtractQVD)$(vMyTableNameQVD).QVD;&lt;BR /&gt;DROP Table $(vMyTableNameQVD);&lt;BR /&gt;Next i;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;FOR vCount = 0 to NoOfTables()-1&lt;BR /&gt;LET vTableName = TableName($(vCount));&lt;BR /&gt;STORE $(vTableName) INTO $(vTableName).qvd (qvd);&lt;BR /&gt;DROP TABLE $(vTableName);&lt;BR /&gt;NEXT vCount&lt;/P&gt;</description>
    <pubDate>Thu, 25 Jun 2020 11:20:17 GMT</pubDate>
    <dc:creator>racer25</dc:creator>
    <dc:date>2020-06-25T11:20:17Z</dc:date>
    <item>
      <title>OLE OBJECT</title>
      <link>https://community.qlik.com/t5/QlikView/OLE-OBJECT/m-p/1722096#M451883</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;I am having a challenge that is only exacerbated by remote working. Basically I point the below script at a data source and it creates a QVD for every table. The issue I have is that I have a table that generates a 7.3GB QVD with a 108 thousand records. The next largest QVD is 77 MB and has just over a million records. In looking at the raw data 6 columns and 108 thousand rows I see one of them is an OLE Object.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there anything I can do to avoid this issue/challenge.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using Qlikview April 2019 SR1 - Don't recall this being an issue on older versions although never an issue while in the office.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;OLEDB CONNECT TO [Provider=OraOLEDB.Oracle.1;Persist Security Info=True;User ID=owner_cdg;Data Source=PCD2;Extended Properties="FetchSize=10000"] (XPassword is FBKNXXdOOLZEXPNMEbZWP);&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;OracleTableList:&lt;BR /&gt;SQL&lt;BR /&gt;select TABLE_NAME, OWNER from all_tables&lt;BR /&gt;where owner='OWNER_CDG'; // change the owner/schema&lt;BR /&gt;&lt;BR /&gt;Let vTableCount = NoOfRows('OracleTableList');&lt;BR /&gt;&lt;BR /&gt;For i = 0 To $(vTableCount) -1&lt;BR /&gt;LET vMyTableName = Peek('OWNER', $(i), 'OracleTableList') &amp;amp; '.' &amp;amp; Peek('TABLE_NAME', $(i), 'OracleTableList');&lt;BR /&gt;LET vMyTableNameQVD = Replace(Peek('TABLE_NAME', $(i), 'OracleTableList'), ' ', '_');&lt;BR /&gt;&lt;BR /&gt;$(vMyTableNameQVD):&lt;BR /&gt;SQL SELECT * FROM $(vMyTableName) ;&lt;BR /&gt;STORE $(vMyTableNameQVD) INTO QVD\$(ExtractQVD)$(vMyTableNameQVD).QVD;&lt;BR /&gt;DROP Table $(vMyTableNameQVD);&lt;BR /&gt;Next i;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;FOR vCount = 0 to NoOfTables()-1&lt;BR /&gt;LET vTableName = TableName($(vCount));&lt;BR /&gt;STORE $(vTableName) INTO $(vTableName).qvd (qvd);&lt;BR /&gt;DROP TABLE $(vTableName);&lt;BR /&gt;NEXT vCount&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2020 11:20:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OLE-OBJECT/m-p/1722096#M451883</guid>
      <dc:creator>racer25</dc:creator>
      <dc:date>2020-06-25T11:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: OLE OBJECT</title>
      <link>https://community.qlik.com/t5/QlikView/OLE-OBJECT/m-p/1726504#M452046</link>
      <description>&lt;P&gt;What I would recommend is use script log to determine if it is in the SQL call, or in our script functions, but if you strip things down to just the SQL call and run that, I would suspect that should work too to confirm, as if it is on the SQL side, that is going to be a case of&amp;nbsp; probably checking the Oracle Forums on that one in that case, otherwise if it is on our functions, then we may be able to try to sort something out.&amp;nbsp; Sorry I do not have any better suggestions.&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 12:53:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OLE-OBJECT/m-p/1726504#M452046</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2020-07-09T12:53:48Z</dc:date>
    </item>
  </channel>
</rss>

