<?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 Easey question regarding the Resident command. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Easey-question-regarding-the-Resident-command/m-p/151995#M29603</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all, How does the command Resident work? Should'nt this code give me a table called ODS? This results in nothing...&lt;/P&gt;&lt;PRE ___default_attr="plain" class="jive_text_macro jive_macro_code" jivemacro="code"&gt;tmpODS:LOAD SalesUnit, ProductionUnitFROM qvd\ODS.qvd (qvd);ODS:load *resident tmpODS;drop table tmpODS;&lt;/PRE&gt;Br Cristian&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 16 May 2010 20:43:11 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-05-16T20:43:11Z</dc:date>
    <item>
      <title>Easey question regarding the Resident command.</title>
      <link>https://community.qlik.com/t5/QlikView/Easey-question-regarding-the-Resident-command/m-p/151995#M29603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all, How does the command Resident work? Should'nt this code give me a table called ODS? This results in nothing...&lt;/P&gt;&lt;PRE ___default_attr="plain" class="jive_text_macro jive_macro_code" jivemacro="code"&gt;tmpODS:LOAD SalesUnit, ProductionUnitFROM qvd\ODS.qvd (qvd);ODS:load *resident tmpODS;drop table tmpODS;&lt;/PRE&gt;Br Cristian&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 May 2010 20:43:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Easey-question-regarding-the-Resident-command/m-p/151995#M29603</guid>
      <dc:creator />
      <dc:date>2010-05-16T20:43:11Z</dc:date>
    </item>
    <item>
      <title>Easey question regarding the Resident command.</title>
      <link>https://community.qlik.com/t5/QlikView/Easey-question-regarding-the-Resident-command/m-p/151996#M29604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Resident works OK, just the way you expected. Your problem is a classic "automatic concatenation problem". Since you are loading "*", your table ODS has exactly the same fields as the table tmpODS, and the two tables are automatically concatenated into tmpODS, which is being dropped.&lt;/P&gt;&lt;P&gt;To prevent the problem, add keyword NOCONCATENATE in front of the second load:&lt;/P&gt;&lt;PRE style="margin:0px;"&gt;tmpODS:&lt;BR /&gt;LOAD&lt;BR /&gt;SalesUnit, ProductionUnit&lt;BR /&gt;FROM qvd\ODS.qvd (qvd);&lt;BR /&gt;ODS:&lt;BR /&gt;NOCONCATENATE load *&lt;BR /&gt;resident tmpODS;&lt;BR /&gt;drop table tmpODS;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 May 2010 20:51:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Easey-question-regarding-the-Resident-command/m-p/151996#M29604</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2010-05-16T20:51:14Z</dc:date>
    </item>
    <item>
      <title>Easey question regarding the Resident command.</title>
      <link>https://community.qlik.com/t5/QlikView/Easey-question-regarding-the-Resident-command/m-p/151997#M29605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you! I have been trying different ways for hours! A beginners problem ;D&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br&lt;/P&gt;&lt;P&gt;cristian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 May 2010 20:56:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Easey-question-regarding-the-Resident-command/m-p/151997#M29605</guid>
      <dc:creator />
      <dc:date>2010-05-16T20:56:15Z</dc:date>
    </item>
    <item>
      <title>Easey question regarding the Resident command.</title>
      <link>https://community.qlik.com/t5/QlikView/Easey-question-regarding-the-Resident-command/m-p/151998#M29606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your code works ok. it will create two tables tmpODS and ODS ...Both the tables will joined together cos all the fields in the table are same(it will create Syn keys).You are loading data in to second table using Resident and droping that temporary table tmpODS. If you want to retain both tables and dont want any relationship b/w those tables ,you could noconcatenate keyword.IF you use noconcatenate keyword before loading, there would be any relationships b/w those two tables.In that case, you dont need to drop it...You can drop the temporary table ,if you wish to reduce data loading in memory&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 May 2010 09:03:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Easey-question-regarding-the-Resident-command/m-p/151998#M29606</guid>
      <dc:creator />
      <dc:date>2010-05-17T09:03:39Z</dc:date>
    </item>
  </channel>
</rss>

