<?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: Load * Resident Drop table from Data Warehouse in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Load-Resident-Drop-table-from-Data-Warehouse/m-p/2063558#M12205</link>
    <description>&lt;P&gt;Tables with the same data-structure are automatically concatenated. Means in your case no tables sales is created else this load is added to the sales_tmp which is afterwards deleted and therefore no data exists. This could be avoided with the load-prefix of noconcatenate. But in your case the extra resident-load is superfluous and you could save resources if you skip this part.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 24 Apr 2023 09:39:19 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2023-04-24T09:39:19Z</dc:date>
    <item>
      <title>Load * Resident Drop table from Data Warehouse</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Load-Resident-Drop-table-from-Data-Warehouse/m-p/2063547#M12203</link>
      <description>&lt;P&gt;Hi, I'm trying to prepare data from a warehouse.&lt;BR /&gt;I want to download data for 2022/2023 and I use a temporary table for this and then delete it.&lt;BR /&gt;Unfortunately, there is no data in the new table, I don't know what I'm doing wrong, because the code seems correct, please help.&lt;/P&gt;
&lt;P&gt;Table "sales" is empty. I try load first 10000 and I have some data in "sales_tmp"&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;LIB CONNECT TO 'HD';

First 10000
sales_tmp:
LOAD
hid_sklep,
date(hid_data) as data,
Year(hid_data) as year,
Month(hid_data) as month,
kod_ean,
hid_segment;

SELECT
"hid_sklep",
"hid_data",
"kod_ean",
"hid_segment"
FROM "public"."sales_72"
;

sales:
LOAD *
Resident sales_tmp
;
Drop table sales_tmp;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 09:14:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Load-Resident-Drop-table-from-Data-Warehouse/m-p/2063547#M12203</guid>
      <dc:creator>Sebastian_Dec</dc:creator>
      <dc:date>2023-04-24T09:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: Load * Resident Drop table from Data Warehouse</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Load-Resident-Drop-table-from-Data-Warehouse/m-p/2063557#M12204</link>
      <description>&lt;P&gt;Hi, if you load a table with the same fields as the previous laoded tabla, qlik will do an autocontenation, setting the new rows of the first table, you can avoid this using 'NoConcatenate' before the load:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;sales:
NoConcatenate LOAD *
Resident sales_tmp&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 24 Apr 2023 09:39:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Load-Resident-Drop-table-from-Data-Warehouse/m-p/2063557#M12204</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2023-04-24T09:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: Load * Resident Drop table from Data Warehouse</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Load-Resident-Drop-table-from-Data-Warehouse/m-p/2063558#M12205</link>
      <description>&lt;P&gt;Tables with the same data-structure are automatically concatenated. Means in your case no tables sales is created else this load is added to the sales_tmp which is afterwards deleted and therefore no data exists. This could be avoided with the load-prefix of noconcatenate. But in your case the extra resident-load is superfluous and you could save resources if you skip this part.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 09:39:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Load-Resident-Drop-table-from-Data-Warehouse/m-p/2063558#M12205</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2023-04-24T09:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: Load * Resident Drop table from Data Warehouse</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Load-Resident-Drop-table-from-Data-Warehouse/m-p/2063563#M12206</link>
      <description>&lt;P&gt;Hi, the NoConcatenate prefix forces two loaded tables with the same set of fields to be treated as two separate internal tables, otherwise they will be automatically concatenated.&lt;/P&gt;
&lt;P&gt;LIB CONNECT TO 'HD';&lt;/P&gt;
&lt;P&gt;First 10000&lt;BR /&gt;sales_tmp:&lt;BR /&gt;LOAD&lt;BR /&gt;hid_sklep,&lt;BR /&gt;date(hid_data) as data,&lt;BR /&gt;Year(hid_data) as year,&lt;BR /&gt;Month(hid_data) as month,&lt;BR /&gt;kod_ean,&lt;BR /&gt;hid_segment;&lt;/P&gt;
&lt;P&gt;SELECT&lt;BR /&gt;"hid_sklep",&lt;BR /&gt;"hid_data",&lt;BR /&gt;"kod_ean",&lt;BR /&gt;"hid_segment"&lt;BR /&gt;FROM "public"."sales_72"&lt;BR /&gt;;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;NoConcatenate&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;sales:&lt;BR /&gt;LOAD *&lt;BR /&gt;Resident sales_tmp&lt;BR /&gt;;&lt;BR /&gt;Drop table sales_tmp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 09:49:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Load-Resident-Drop-table-from-Data-Warehouse/m-p/2063563#M12206</guid>
      <dc:creator>BrunPierre</dc:creator>
      <dc:date>2023-04-24T09:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: Load * Resident Drop table from Data Warehouse</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Load-Resident-Drop-table-from-Data-Warehouse/m-p/2063569#M12207</link>
      <description>&lt;P&gt;Thx, You all for helping me &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 09:54:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Load-Resident-Drop-table-from-Data-Warehouse/m-p/2063569#M12207</guid>
      <dc:creator>Sebastian_Dec</dc:creator>
      <dc:date>2023-04-24T09:54:17Z</dc:date>
    </item>
  </channel>
</rss>

