<?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: QlikView Script Fails when Storing a Second Table with Very Similar Name as the First in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/QlikView-Script-Fails-when-Storing-a-Second-Table-with-Very/m-p/5560#M791649</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its not because of similar table name . If you change the table names still the results will be same .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This happens because both the table have same column so qlikview concatenates them and store it in the first table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this for no concatenation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Calendar_Weeks:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD YearWeek, &lt;SPAN style="font-size: 10pt;"&gt; Year,&lt;/SPAN&gt;&amp;nbsp; Week,&amp;nbsp; Mth,&amp;nbsp; Qtr,&amp;nbsp; Season&lt;SPAN style="font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM Calendar_Weeks;&lt;/P&gt;&lt;P&gt;STORE &lt;STRONG&gt;Calendar_Weeks&lt;/STRONG&gt; INTO C:\Calendar_Weeks.QVD;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt; noconcatenate&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Calendar_Weeks_All_Years&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;LOAD YearWeek,&lt;SPAN style="font-size: 10pt;"&gt; Year,&lt;/SPAN&gt; Week, Mth,&amp;nbsp; Qtr, Season&lt;SPAN style="font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM Calendar_Weeks_All_Years;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;STORE &lt;STRONG&gt;Calendar_Weeks_All_Years&lt;/STRONG&gt; INTO C:\Calendar_Weeks_All_Years.QVD; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Jan 2018 17:43:37 GMT</pubDate>
    <dc:creator>pradosh_thakur</dc:creator>
    <dc:date>2018-01-23T17:43:37Z</dc:date>
    <item>
      <title>QlikView Script Fails when Storing a Second Table with Very Similar Name as the First</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-Script-Fails-when-Storing-a-Second-Table-with-Very/m-p/5559#M791648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a QlikView Doc that is responsible for creating several QVDs. I set it up to load Tables and Store them into QVDs but I leave the Drop Table statements until the very last Tab (no reason; just by habit).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Occasionally, when loading a Table with a name very similar to the previous table, I get an error when the Store is attempted. It appears the script loads the second table into the first even though the second has a new table label. When the second Store is attempted, there is no table with the name specified. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I get around it by dropping the first table after the first Store statement but I am very curious why it happens. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Here's the code:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Calendar_Weeks:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD YearWeek, &lt;SPAN style="font-size: 10pt;"&gt; Year,&lt;/SPAN&gt;&amp;nbsp; Week,&amp;nbsp; Mth,&amp;nbsp; Qtr,&amp;nbsp; Season&lt;SPAN style="font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM Calendar_Weeks;&lt;/P&gt;&lt;P&gt;STORE &lt;STRONG&gt;Calendar_Weeks&lt;/STRONG&gt; INTO C:\Calendar_Weeks.QVD;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Calendar_Weeks_All_Years&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;LOAD YearWeek,&lt;SPAN style="font-size: 10pt;"&gt; Year,&lt;/SPAN&gt; Week, Mth,&amp;nbsp; Qtr, Season&lt;SPAN style="font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM Calendar_Weeks_All_Years;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;STORE &lt;STRONG&gt;Calendar_Weeks_All_Years&lt;/STRONG&gt; INTO C:\Calendar_Weeks_All_Years.QVD; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Error.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/191042_Error.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Details.jpg" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/191043_Details.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Any ideas why? Again I can get around it but I'm very curious why it happens. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Mark Donovan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-Script-Fails-when-Storing-a-Second-Table-with-Very/m-p/5559#M791648</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView Script Fails when Storing a Second Table with Very Similar Name as the First</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-Script-Fails-when-Storing-a-Second-Table-with-Very/m-p/5560#M791649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its not because of similar table name . If you change the table names still the results will be same .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This happens because both the table have same column so qlikview concatenates them and store it in the first table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this for no concatenation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Calendar_Weeks:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD YearWeek, &lt;SPAN style="font-size: 10pt;"&gt; Year,&lt;/SPAN&gt;&amp;nbsp; Week,&amp;nbsp; Mth,&amp;nbsp; Qtr,&amp;nbsp; Season&lt;SPAN style="font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM Calendar_Weeks;&lt;/P&gt;&lt;P&gt;STORE &lt;STRONG&gt;Calendar_Weeks&lt;/STRONG&gt; INTO C:\Calendar_Weeks.QVD;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt; noconcatenate&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Calendar_Weeks_All_Years&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;LOAD YearWeek,&lt;SPAN style="font-size: 10pt;"&gt; Year,&lt;/SPAN&gt; Week, Mth,&amp;nbsp; Qtr, Season&lt;SPAN style="font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM Calendar_Weeks_All_Years;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;STORE &lt;STRONG&gt;Calendar_Weeks_All_Years&lt;/STRONG&gt; INTO C:\Calendar_Weeks_All_Years.QVD; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2018 17:43:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-Script-Fails-when-Storing-a-Second-Table-with-Very/m-p/5560#M791649</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2018-01-23T17:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView Script Fails when Storing a Second Table with Very Similar Name as the First</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-Script-Fails-when-Storing-a-Second-Table-with-Very/m-p/5561#M791650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That makes sense. Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2018 17:46:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-Script-Fails-when-Storing-a-Second-Table-with-Very/m-p/5561#M791650</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-23T17:46:18Z</dc:date>
    </item>
  </channel>
</rss>

