<?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: Resident load from entire model in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790630#M279560</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In order to achieve 1 flat Fact table, you have to use JOIN or Concatenate approach. The other thing is reducing the data test, for what I have understood, you can use EXISTS functions to restrict the data based on unique or use where clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know, if that is what is required?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Feb 2015 06:49:33 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-02-26T06:49:33Z</dc:date>
    <item>
      <title>Resident load from entire model</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790624#M279554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to consolidate the data and avoid unnecessary data in RAM. So I have loaded few tables and want to create a consolidated table using sum and count etc to later drop the soruce tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure how to write the load script as if I use resident then I need to provide the table name, which is actually entire data model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestion. ?&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2015 16:01:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790624#M279554</guid>
      <dc:creator />
      <dc:date>2015-02-25T16:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: Resident load from entire model</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790625#M279555</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'm not quite sure of your requirement.&lt;/P&gt;&lt;P&gt;But if you have a large (resident) table and wish to reduce by grouping on certain fields with aggregated fields, you can:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LargeTable:&lt;/P&gt;&lt;P&gt;LOAD all your data;&lt;/P&gt;&lt;P&gt;GroupedTable:&lt;/P&gt;&lt;P&gt;LOAD grouping fields &amp;amp; aggregated fields RESIDENT LargeTable GROUP BY .....;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE Large-table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2015 16:10:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790625#M279555</guid>
      <dc:creator>richard_chilvers</dc:creator>
      <dc:date>2015-02-25T16:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: Resident load from entire model</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790626#M279556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You will have to make some joins or applymaps to bring the datas in one single table and then you will be able to make sum on it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2015 16:38:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790626#M279556</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-25T16:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: Resident load from entire model</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790627#M279557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Zahoor,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can implement 3 tier QVD Architechture(Extraction ,Transformation(you can make calculations) and Load Layer)&lt;/P&gt;&lt;P&gt;when you have huge data sets its performance wise and memory wise good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//first qvw&lt;/P&gt;&lt;P&gt;ExtractionTable:&lt;/P&gt;&lt;P&gt;LOAD all your data;&lt;/P&gt;&lt;P&gt;store&amp;nbsp; ExtractionTable into&amp;nbsp; ExtractionTable.qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//second qvw&lt;/P&gt;&lt;P&gt;TransformationTable:&lt;/P&gt;&lt;P&gt;LOAD * ExtractionTable.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;noconcatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD grouping fields &amp;amp; aggregated fields &lt;/P&gt;&lt;P&gt;Resident TransformationTable&lt;/P&gt;&lt;P&gt;GROUP BY .....;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store&amp;nbsp; TransformationTable into&amp;nbsp; TransformationTable.qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//third qvw(Visualisation)&lt;/P&gt;&lt;P&gt;LoadTable:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;From TransformationTable.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Neetha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2015 17:04:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790627#M279557</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-25T17:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: Resident load from entire model</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790628#M279558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The data is only from database ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2015 17:06:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790628#M279558</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-25T17:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: Resident load from entire model</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790629#M279559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What I am looking to reduction of the model itself. I have three tables, one with sales revenue based on invoice and one sales order and one with customer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to reduce to simple fact table with customer, revenue and order count. and drop the original source table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My understanding that at the end when all tables are connected, it appear like one flat fact table in Qlikview, so just wonder how to achieve that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 06:35:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790629#M279559</guid>
      <dc:creator />
      <dc:date>2015-02-26T06:35:18Z</dc:date>
    </item>
    <item>
      <title>Re: Resident load from entire model</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790630#M279560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In order to achieve 1 flat Fact table, you have to use JOIN or Concatenate approach. The other thing is reducing the data test, for what I have understood, you can use EXISTS functions to restrict the data based on unique or use where clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know, if that is what is required?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 06:49:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790630#M279560</guid>
      <dc:creator />
      <dc:date>2015-02-26T06:49:33Z</dc:date>
    </item>
    <item>
      <title>Re: Resident load from entire model</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790631#M279561</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;It sounds like you want to have a single set of details for each customer showing their total revenue and total sales?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD the customer table (hopefully this already has one record per customer?).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next LOAD the revenue details, and GROUP BY the customer code to get a single total revenue figure for each customer. You can keep these in a separate table as long as the Customer code is identical in each table because QV will JOIN them nicely for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then do a similar thing for your order table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 08:17:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790631#M279561</guid>
      <dc:creator>richard_chilvers</dc:creator>
      <dc:date>2015-02-26T08:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: Resident load from entire model</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790632#M279562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. Seems making some sense, but can you help me further by example or some pseudo code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have loaded the customer table which is in table i.e. Customer with fields Customer Name, Customer Code&lt;/P&gt;&lt;P&gt;I also loaded the revenue in another table i.e. Cust_Revenue with fields Customer Code, Invoice&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;I also loaded the revenue in another table i.e. Cust_Order with Fields Customer Code, Order Id&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to use make final internal table say Cust_Relationship with fields Customer Name, Total Revenue, Order Count&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 15:52:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790632#M279562</guid>
      <dc:creator />
      <dc:date>2015-02-26T15:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Resident load from entire model</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790633#M279563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Zahoor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume you will have several invoices, and several orders, for each customer code.&lt;/P&gt;&lt;P&gt;I suggest:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CustRelationship:&lt;/P&gt;&lt;P&gt;LOAD Customer Code, Customer Name (etc....) FROM customer table;&lt;/P&gt;&lt;P&gt;LEFT JOIN LOAD Customer_Code, SUM(Invoice) AS Total_Revenue &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM Cust_Revenue&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GROUP BY Customer_Code;&lt;/P&gt;&lt;P&gt;LEFT JOIN LOAD Customer_Code, COUNT("Order Id") AS Total_Orders&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM Cust_Order&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GROUP BY Customer_Code ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QlikView recognises the same field Customer_Code in the 3 tables, and links them based on that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should end up with a table called CustRelationship with one record per customer, having customer details and a field for total revenue and one for number of orders.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope I have understood your requirement and got my script syntax correct !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 17:06:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-load-from-entire-model/m-p/790633#M279563</guid>
      <dc:creator>richard_chilvers</dc:creator>
      <dc:date>2015-02-26T17:06:18Z</dc:date>
    </item>
  </channel>
</rss>

