<?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 TEMPORAL TABLES in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/TEMPORAL-TABLES/m-p/239992#M90549</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Anyone can give me a little explanation on how can i make temp tables on qv script plz?, or how can i handle sql temp tables on the qv script plz.&lt;/P&gt;&lt;P&gt;Any help will be appreciate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Carlos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Feb 2010 01:55:49 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-02-17T01:55:49Z</dc:date>
    <item>
      <title>TEMPORAL TABLES</title>
      <link>https://community.qlik.com/t5/QlikView/TEMPORAL-TABLES/m-p/239992#M90549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Anyone can give me a little explanation on how can i make temp tables on qv script plz?, or how can i handle sql temp tables on the qv script plz.&lt;/P&gt;&lt;P&gt;Any help will be appreciate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Carlos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 01:55:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/TEMPORAL-TABLES/m-p/239992#M90549</guid>
      <dc:creator />
      <dc:date>2010-02-17T01:55:49Z</dc:date>
    </item>
    <item>
      <title>TEMPORAL TABLES</title>
      <link>https://community.qlik.com/t5/QlikView/TEMPORAL-TABLES/m-p/239993#M90550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is an example of creating a temp table from an SQL temp table, if I understood your question:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;MyTempTable:&lt;BR /&gt;LOAD *&lt;BR /&gt;;&lt;BR /&gt;SQL&lt;BR /&gt;SELECT Z, A, B, A+B AS C FROM (&lt;BR /&gt;SELECT Z, MAX(ABC) AS A, SUM(XYZ) AS B&lt;BR /&gt;FROM some table&lt;BR /&gt;WHERE some condition&lt;BR /&gt;GROUP BY Z ) AS TEMPTABLE&lt;BR /&gt;;&lt;BR /&gt;...&lt;BR /&gt;Do things with MyTempTable&lt;BR /&gt;...&lt;BR /&gt;DROP TABLE MyTempTable&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 02:21:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/TEMPORAL-TABLES/m-p/239993#M90550</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-02-17T02:21:09Z</dc:date>
    </item>
    <item>
      <title>TEMPORAL TABLES</title>
      <link>https://community.qlik.com/t5/QlikView/TEMPORAL-TABLES/m-p/239994#M90551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot John, you were very helpful.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;CArlos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 02:33:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/TEMPORAL-TABLES/m-p/239994#M90551</guid>
      <dc:creator />
      <dc:date>2010-02-17T02:33:20Z</dc:date>
    </item>
    <item>
      <title>TEMPORAL TABLES</title>
      <link>https://community.qlik.com/t5/QlikView/TEMPORAL-TABLES/m-p/239995#M90552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Carlos.&lt;/P&gt;&lt;P&gt;In the other way, you can create temp tables witch "Load InLine ..." statement manually.&lt;/P&gt;&lt;P&gt;This is only usefully for short quantity of data. For example you can make something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;TempTable:&lt;BR /&gt;Load * inline&lt;BR /&gt;[campo1texto,campo2numero,campo3texto&lt;BR /&gt;"1",1,"texto1"&lt;BR /&gt;"2",2,"texto 2"&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 02:53:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/TEMPORAL-TABLES/m-p/239995#M90552</guid>
      <dc:creator />
      <dc:date>2010-02-17T02:53:51Z</dc:date>
    </item>
    <item>
      <title>Re:TEMPORAL TABLES</title>
      <link>https://community.qlik.com/t5/QlikView/TEMPORAL-TABLES/m-p/239996#M90553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Carlos,&lt;/P&gt;&lt;P&gt;Thanks for your post.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Carlos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 03:12:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/TEMPORAL-TABLES/m-p/239996#M90553</guid>
      <dc:creator />
      <dc:date>2010-02-17T03:12:28Z</dc:date>
    </item>
  </channel>
</rss>

