<?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: generate fact table using already loaded tables not from any source file or database in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/generate-fact-table-using-already-loaded-tables-not-from-any/m-p/501660#M187422</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;Use the RESIDENT keyword.&lt;/P&gt;&lt;P&gt;Instead of having&lt;/P&gt;&lt;P&gt;LOAD .... FROM Afile&amp;nbsp;&amp;nbsp; (as you have already done)&lt;/P&gt;&lt;P&gt;you do&lt;/P&gt;&lt;P&gt;LOAD .... RESIDENT QVTable&lt;/P&gt;&lt;P&gt;where QVTable is a QlikView table already loaded. The syntax is the same as a file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So first you load the files, after that you "transfert" the data from these tables to the definitve table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to load your fact table from different QV tables, you will need to load the first table, use JOIN (LEFT, RIGHT, INNER, OUTER) for the following tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also drop the temp tables at the end of the process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fabrice&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 09 Nov 2013 14:21:26 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-11-09T14:21:26Z</dc:date>
    <item>
      <title>generate fact table using already loaded tables not from any source file or database</title>
      <link>https://community.qlik.com/t5/QlikView/generate-fact-table-using-already-loaded-tables-not-from-any/m-p/501658#M187420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;I need a help regarding Qlikview scripting.&lt;/P&gt;&lt;P&gt;i have multiple tables and i have already loaded these table in qlikview . &lt;/P&gt;&lt;P&gt;Now i want to make a fact table using these loaded tables not from any source file . &lt;/P&gt;&lt;P&gt;Can it be possible ?&lt;/P&gt;&lt;P&gt;If yes then please tell me how , please provide some sample code to understand. &lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards , &lt;/P&gt;&lt;P&gt;Agnivesh Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Nov 2013 13:58:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/generate-fact-table-using-already-loaded-tables-not-from-any/m-p/501658#M187420</guid>
      <dc:creator>agni_gold</dc:creator>
      <dc:date>2013-11-09T13:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: generate fact table using already loaded tables not from any source file or database</title>
      <link>https://community.qlik.com/t5/QlikView/generate-fact-table-using-already-loaded-tables-not-from-any/m-p/501659#M187421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do a resident table load, i.e. state a table already loaded to your data model as data source:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Initial load from data source&lt;/P&gt;&lt;P&gt;TABLEA:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELDA,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELDB&lt;/P&gt;&lt;P&gt;FROM YourDBTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Resident Load field A&lt;/P&gt;&lt;P&gt;LOAD FIELDA &lt;STRONG&gt;RESIDENT&lt;/STRONG&gt; TABLEA;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Nov 2013 14:20:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/generate-fact-table-using-already-loaded-tables-not-from-any/m-p/501659#M187421</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-11-09T14:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: generate fact table using already loaded tables not from any source file or database</title>
      <link>https://community.qlik.com/t5/QlikView/generate-fact-table-using-already-loaded-tables-not-from-any/m-p/501660#M187422</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;Use the RESIDENT keyword.&lt;/P&gt;&lt;P&gt;Instead of having&lt;/P&gt;&lt;P&gt;LOAD .... FROM Afile&amp;nbsp;&amp;nbsp; (as you have already done)&lt;/P&gt;&lt;P&gt;you do&lt;/P&gt;&lt;P&gt;LOAD .... RESIDENT QVTable&lt;/P&gt;&lt;P&gt;where QVTable is a QlikView table already loaded. The syntax is the same as a file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So first you load the files, after that you "transfert" the data from these tables to the definitve table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to load your fact table from different QV tables, you will need to load the first table, use JOIN (LEFT, RIGHT, INNER, OUTER) for the following tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also drop the temp tables at the end of the process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fabrice&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Nov 2013 14:21:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/generate-fact-table-using-already-loaded-tables-not-from-any/m-p/501660#M187422</guid>
      <dc:creator />
      <dc:date>2013-11-09T14:21:26Z</dc:date>
    </item>
  </channel>
</rss>

