<?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: Set analysis causing out of object memory in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361446#M1169546</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 think you need a preceeding LOAD with a group by clause to fix the records you need during the following (main-)load.&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CA&lt;EM&gt;,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Where CountDistinct &amp;gt; 1&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Count(DISTINCT &lt;EM&gt;Payment_Reference_In_CA&lt;/EM&gt;)&amp;nbsp;&amp;nbsp;&amp;nbsp; AS CountDistinct,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;EM&gt;CA,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Resident RawUser&lt;/P&gt;&lt;P&gt;Group By &lt;EM&gt;CA,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second:&lt;/P&gt;&lt;P&gt;Do the Load with en exists() like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;where exists(&lt;EM&gt;CA&lt;/EM&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should be faster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HtH&lt;/P&gt;&lt;P&gt;Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Jul 2012 11:31:08 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-07-23T11:31:08Z</dc:date>
    <item>
      <title>Set analysis causing out of object memory</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361440#M1169540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good evening, im using a bit of set analysis to identify duplicate records. Prior to the set analysis being used the script runs fine up to this point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I then use this :- &lt;SPAN style="color: #008000; font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;=If(Count(TOTAL &amp;lt;Payment_Reference_In_CA&amp;gt;CA) &amp;gt; 1,'X')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt;"&gt;As soon as I do (looking at task manager) the memory usage goes through the roof until I get out of object memory.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt;"&gt;I have 4.7 million lines of data loaded which I dont really need anyway.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt;"&gt;Can anyone help me by limiting the load by restricting the data to only load data relating to Payment_Reference_In_CA if it has more than 1 record under field CA.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt;"&gt;Thanks.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt;"&gt;Paul.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2012 15:27:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361440#M1169540</guid>
      <dc:creator />
      <dc:date>2012-07-20T15:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis causing out of object memory</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361441#M1169541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could you please clarify if your issue arise while executing your load script or when you add an expression to a chart object?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are saying, '..the script runs fine to this point' so I assume you are executing a load script.&lt;/P&gt;&lt;P&gt;But your posted expression looks like a chart object expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, the expression you posted &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;=If(Count(TOTAL &amp;lt;Payment_Reference_In_CA&amp;gt;CA) &amp;gt; 1,'X')&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;does not contain a set analysis construct, I only can see a total qualifier with field list as part of your aggregation function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The expression itselft doesn't look problematic to me with regard to extreme memory consumption, but I also know next to nothing about your setting, so it may be helpful if you could add some information about your data model, chart dimensions and expressions (if you are using that expression in chart object), or the relevant part of your load script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If possible, attaching a small sample application that demonstrate your issue might speed things up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Jul 2012 15:38:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361441#M1169541</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-07-21T15:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis causing out of object memory</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361442#M1169542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stefan, thanks for your reply, I am running a load script where I only want it to provide non-distinct records. Here is the script I am using:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Main Table:&lt;/P&gt;&lt;P&gt;LOAD BP, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CA,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Incoming_Payment_Method,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Annual_DD_Payer,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Standing_Order,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Payment_Reference_In_CA&lt;/P&gt;&lt;P&gt;FROM*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am wanting to make the script load where field 'Payment_Reference_In_CA' has more than 1 relating entry for Field 'CA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Expression &lt;SPAN style="background-color: #eef4f9; font-family: Arial; color: #636363; font-size: 12px;"&gt;=If(Count(TOTAL &amp;lt;Payment_Reference_In_CA&amp;gt;CA) &amp;gt; 1,'X'&lt;/SPAN&gt; works well if there isnt a large amount of data to pull. I am wanting to achieve a restricted load in order to limit the load to what I only need.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2012 10:18:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361442#M1169542</guid>
      <dc:creator />
      <dc:date>2012-07-23T10:18:20Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis causing out of object memory</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361443#M1169543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear mrpjspencer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can follow the below mentioned things:&lt;/P&gt;&lt;P&gt;1) Use of if statement in the expression is not the good practice,because for the large data it wont work.&lt;/P&gt;&lt;P&gt;2) You can load the limited no. of records then make selections and then load the whole data. To avoid selection erasing use lock.&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;Nilesh Gangurde&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2012 10:35:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361443#M1169543</guid>
      <dc:creator>nilesh_gangurde</dc:creator>
      <dc:date>2012-07-23T10:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis causing out of object memory</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361444#M1169544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to construct an IF statement to limit the load to what I need. This is where I am wanting to go, am drawing blanks at the moment. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/confused.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2012 10:40:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361444#M1169544</guid>
      <dc:creator />
      <dc:date>2012-07-23T10:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis causing out of object memory</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361445#M1169545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think a single if() statement would be sufficient, since you can't decide to load / not load the record only looking at the one single record, right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe you probably need to do a group by load first, something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FILTER:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD Payment_Reference_In_CA where Count &amp;gt;1;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Payment_Reference_In_CA,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;count(CA) as Count&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM ... group by Payment_Reference_In_CA;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Main Table:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD BP, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CA,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Incoming_Payment_Method,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Annual_DD_Payer,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Standing_Order,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Payment_Reference_In_CA&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM ... where exists(Payment_Reference_In_CA);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;drop table FILTER;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;edit: Forgot the group by clause ...&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2012 11:22:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361445#M1169545</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-07-23T11:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis causing out of object memory</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361446#M1169546</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 think you need a preceeding LOAD with a group by clause to fix the records you need during the following (main-)load.&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CA&lt;EM&gt;,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Where CountDistinct &amp;gt; 1&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Count(DISTINCT &lt;EM&gt;Payment_Reference_In_CA&lt;/EM&gt;)&amp;nbsp;&amp;nbsp;&amp;nbsp; AS CountDistinct,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;EM&gt;CA,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Resident RawUser&lt;/P&gt;&lt;P&gt;Group By &lt;EM&gt;CA,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second:&lt;/P&gt;&lt;P&gt;Do the Load with en exists() like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;where exists(&lt;EM&gt;CA&lt;/EM&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should be faster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HtH&lt;/P&gt;&lt;P&gt;Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2012 11:31:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361446#M1169546</guid>
      <dc:creator />
      <dc:date>2012-07-23T11:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis causing out of object memory</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361447#M1169547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This seems a bit messy where I am only after achieving something quite simple. (to anglicise what I want:-)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(this goes for all entries within my database, there are millions)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only load property if it has more than 1 telephone number,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only load record A if record B has more than 1 entry thats linked to record A...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2012 12:01:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361447#M1169547</guid>
      <dc:creator />
      <dc:date>2012-07-23T12:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis causing out of object memory</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361448#M1169548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe I still don't get what you are after, but as I said, this is not a simple request, since you can't decide based on only looking at single records, you need to aggregate, right? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also in your chart expression, that's what you are doing (using dimensions to group by):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;=If(&lt;STRONG&gt;Count(&lt;/STRONG&gt;TOTAL &amp;lt;Payment_Reference_In_CA&amp;gt;CA) &amp;gt; 1,'X')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would you answer your question right, if a record A needs to be included, without looking at all records for B?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2012 12:06:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361448#M1169548</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-07-23T12:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis causing out of object memory</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361449#M1169549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This seems a bit messy where I am only after achieving something quite simple. (to anglicise what I want:-)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(this goes for all entries within my database, there are millions)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only load property if it has more than 1 telephone number,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only load record A if record B has more than 1 entry thats linked to record A...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2012 12:07:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361449#M1169549</guid>
      <dc:creator />
      <dc:date>2012-07-23T12:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis causing out of object memory</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361450#M1169550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right Field A and B should only have a 1 to 1 relationship I am only wanting to load field A if it has a 1 to 2 relationship&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2012 12:12:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361450#M1169550</guid>
      <dc:creator />
      <dc:date>2012-07-23T12:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis causing out of object memory</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361451#M1169551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can probably create an SQL sub query to delegate the record filtering to the DB, this might be what you are looking for. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The suggested solution above is QV only and should work with any data source.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2012 12:14:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361451#M1169551</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-07-23T12:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis causing out of object memory</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361452#M1169552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Err I don't have access to SQL in my company, I'd rather try and achieve this in script!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2012 12:15:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361452#M1169552</guid>
      <dc:creator />
      <dc:date>2012-07-23T12:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis causing out of object memory</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361453#M1169553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorted it, I just told it to load entries where len&amp;gt;0 there were quite a few entries that were blank therefore useless to me, this then made my script only load what I needed &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/laugh.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2012 12:26:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-causing-out-of-object-memory/m-p/361453#M1169553</guid>
      <dc:creator />
      <dc:date>2012-07-23T12:26:09Z</dc:date>
    </item>
  </channel>
</rss>

