<?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: No table is created in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/No-table-is-created/m-p/1128949#M631062</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A _jive_internal="true" data-avatarid="5408" data-externalid="" data-online="false" data-presence="null" data-userid="4526" data-username="jerrysvensson" href="https://community.qlik.com/people/jerrysvensson" style="font-weight: bold; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #8b8b8b; background-color: #f2f2f2;"&gt;Jerry Svensson&lt;/A&gt;&lt;/P&gt;&lt;P&gt;It works fine!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you explain it briefly?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I am not using noconcatenate statement all the data is concatenated and it appears as a part of tmp table?&lt;/P&gt;&lt;P&gt;When dropping tmp I am just removing all the data, am I right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Jun 2016 10:00:19 GMT</pubDate>
    <dc:creator>MindaugasBacius</dc:creator>
    <dc:date>2016-06-28T10:00:19Z</dc:date>
    <item>
      <title>No table is created</title>
      <link>https://community.qlik.com/t5/QlikView/No-table-is-created/m-p/1128945#M631058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a script.&lt;/P&gt;&lt;P&gt;Unfortunately, I cannot figure out what is wrong because map_Tour is an empty table. Actually there is no table after reload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14671070976068308" jivemacro_uid="_14671070976068308" modifiedtitle="true"&gt;
&lt;P&gt;tmp:&lt;/P&gt;
&lt;P&gt;LOAD SY103_WOCHENTAG, &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SY103_TOUR_NR&lt;/P&gt;
&lt;P&gt;FROM&lt;/P&gt;
&lt;P&gt;Source&lt;/P&gt;
&lt;P&gt;(qvd);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;tmp2:&lt;/P&gt;
&lt;P&gt;CrossTable(Day, Tour)&lt;/P&gt;
&lt;P&gt;LOAD ID, &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [1], &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [2], &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [3], &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [4], &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [5], &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [6], &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [7]&lt;/P&gt;
&lt;P&gt;FROM&lt;/P&gt;
&lt;P&gt;Source&lt;/P&gt;
&lt;P&gt;(ooxml, embedded labels, table is Points);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Concatenate (tmp)&lt;/P&gt;
&lt;P&gt;load distinct ID &amp;amp; '|' &amp;amp; Day as SY103_WOCHENTAG&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ,Tour as SY103_TOUR_NR&lt;/P&gt;
&lt;P&gt;Resident tmp2&lt;/P&gt;
&lt;P&gt;where not(Exists(SY103_WOCHENTAG, ID &amp;amp; '|' &amp;amp; Day))&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;DROP Table tmp2;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;map_Tour:&lt;/P&gt;
&lt;P&gt;Load *&lt;/P&gt;
&lt;P&gt;Resident tmp;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;DROP Table tmp;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I add any new field in map_Tour I get the table:&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14671074475812944 jive_text_macro" jivemacro_uid="_14671074475812944" modifiedtitle="true"&gt;
&lt;P&gt;map_Tour:&lt;/P&gt;
&lt;P&gt;Load *&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,1&lt;/P&gt;
&lt;P&gt;Resident tmp;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I would like to understand the reasons why the script without any additional field in the map_Tour do not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2016 09:52:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/No-table-is-created/m-p/1128945#M631058</guid>
      <dc:creator>MindaugasBacius</dc:creator>
      <dc:date>2016-06-28T09:52:03Z</dc:date>
    </item>
    <item>
      <title>Re: No table is created</title>
      <link>https://community.qlik.com/t5/QlikView/No-table-is-created/m-p/1128946#M631059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;map_Tour:&amp;nbsp; &lt;/P&gt;&lt;P&gt;noconcatenate Load *&amp;nbsp; &lt;/P&gt;&lt;P&gt;Resident tmp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2016 09:53:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/No-table-is-created/m-p/1128946#M631059</guid>
      <dc:creator>jerrysvensson</dc:creator>
      <dc:date>2016-06-28T09:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: No table is created</title>
      <link>https://community.qlik.com/t5/QlikView/No-table-is-created/m-p/1128947#M631060</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 noconcatenate &lt;/P&gt;&lt;P&gt;because table field in tmp and map_tour contain same field Name there for qlikview automatically concatenate the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2016 09:56:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/No-table-is-created/m-p/1128947#M631060</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2016-06-28T09:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: No table is created</title>
      <link>https://community.qlik.com/t5/QlikView/No-table-is-created/m-p/1128948#M631061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;OL class="dp-sql" start="1" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #5c5c5c; margin: 0 0 1px 45px !important;"&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;map_Tour:&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&lt;SPAN class="keyword" style="font-weight: inherit; font-style: inherit; color: #006699; font-size: 9pt !important; background-color: inherit;"&gt;Load&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; background-color: inherit;"&gt; *&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;Resident tmp;&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&lt;SPAN class="keyword" style="font-weight: inherit; font-style: inherit; color: #006699; font-size: 9pt !important; background-color: inherit;"&gt;DROP&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; background-color: inherit;"&gt; &lt;/SPAN&gt;&lt;SPAN class="keyword" style="font-weight: inherit; font-style: inherit; color: #006699; font-size: 9pt !important; background-color: inherit;"&gt;Table&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; background-color: inherit;"&gt; tmp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 9pt; font-style: inherit; font-weight: inherit; color: black; font-family: arial, helvetica, sans-serif; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 9pt; font-style: inherit; font-weight: inherit; color: black; font-family: arial, helvetica, sans-serif; line-height: 1.5em;"&gt;The above table has same fieldname and same column numbers as tmp table so qlikview auto concatenate them.. now when you drop tmp table.. everything getting dropped becuase there is not map_tour table...&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 9pt; font-style: inherit; font-weight: inherit; color: black; font-family: arial, helvetica, sans-serif; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 9pt; font-style: inherit; font-weight: inherit; color: black; font-family: arial, helvetica, sans-serif; line-height: 1.5em;"&gt;Use &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 9pt; font-style: inherit; font-weight: inherit; color: black; font-family: arial, helvetica, sans-serif; line-height: 1.5em;"&gt;NoConcatenate&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important;"&gt;map_Tour:&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important;"&gt;&lt;SPAN class="keyword" style="font-weight: inherit; font-style: inherit; color: #006699; font-size: 9pt !important;"&gt;Load&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important;"&gt; *&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important;"&gt;Resident tmp;&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important;"&gt;&lt;SPAN class="keyword" style="font-weight: inherit; font-style: inherit; color: #006699; font-size: 9pt !important;"&gt;DROP&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important;"&gt; &lt;/SPAN&gt;&lt;SPAN class="keyword" style="font-weight: inherit; font-style: inherit; color: #006699; font-size: 9pt !important;"&gt;Table&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important;"&gt; tmp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2016 09:59:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/No-table-is-created/m-p/1128948#M631061</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2016-06-28T09:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: No table is created</title>
      <link>https://community.qlik.com/t5/QlikView/No-table-is-created/m-p/1128949#M631062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A _jive_internal="true" data-avatarid="5408" data-externalid="" data-online="false" data-presence="null" data-userid="4526" data-username="jerrysvensson" href="https://community.qlik.com/people/jerrysvensson" style="font-weight: bold; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #8b8b8b; background-color: #f2f2f2;"&gt;Jerry Svensson&lt;/A&gt;&lt;/P&gt;&lt;P&gt;It works fine!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you explain it briefly?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I am not using noconcatenate statement all the data is concatenated and it appears as a part of tmp table?&lt;/P&gt;&lt;P&gt;When dropping tmp I am just removing all the data, am I right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2016 10:00:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/No-table-is-created/m-p/1128949#M631062</guid>
      <dc:creator>MindaugasBacius</dc:creator>
      <dc:date>2016-06-28T10:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: No table is created</title>
      <link>https://community.qlik.com/t5/QlikView/No-table-is-created/m-p/1128950#M631063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, QlikView will auto concatenate tables if they have similar or identical fields.&lt;/P&gt;&lt;P&gt;map_tour will be concatenated to the tmp table and therefore will not be created as a table itself.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2016 10:04:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/No-table-is-created/m-p/1128950#M631063</guid>
      <dc:creator>jerrysvensson</dc:creator>
      <dc:date>2016-06-28T10:04:43Z</dc:date>
    </item>
  </channel>
</rss>

