<?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 table viewer issue in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/table-viewer-issue/m-p/228975#M80942</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello abcd1234,&lt;/P&gt;&lt;P&gt;with your code&lt;/P&gt;&lt;P style="font-style: italic"&gt;SUMMARY:&lt;BR /&gt;SQL SELECT a.* FROM summary_pcs a;&lt;BR /&gt;store SUMMARY into E:\qlikview\SUMMARY.qvd (qvd);&lt;/P&gt;&lt;P&gt;you create a QV-table called SUMMARY and store it (exactly: a copy) into a qvd-file. But SUMMARY is still in memory. When loading from the qvd-file&lt;/P&gt;&lt;P&gt;&lt;I&gt;LOAD ........&lt;BR /&gt; FROM SUMMARY.QVD (QVD)&lt;BR /&gt;group by timestamp(EVENT_DATE ......&lt;/I&gt;&lt;/P&gt;&lt;P&gt;you read the copy of SUMMARY from the qvd-file into memory, doing some aggregations (sum() etc.). But there exits a table named SUMMARY (the original). So QV calls the "new" one SUMMARY-1 as you didn't specify a new name. And as always QV creates a sync-table with common fieldnames.&lt;/P&gt;&lt;P&gt;Now it is the time to ask you what do you want to achieve at last? Then you can decide wether using a concatenate load or a QV-join to merge SUMMARY and SUMMARY-1 together.Or drop SUMMARY before loading again from qvd. I do not know (yet).&lt;/P&gt;&lt;P&gt;Regards, Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Dec 2010 11:22:14 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-12-21T11:22:14Z</dc:date>
    <item>
      <title>table viewer issue</title>
      <link>https://community.qlik.com/t5/QlikView/table-viewer-issue/m-p/228971#M80938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the table viewer 3 tables are displaying- summary summary-1 and $syn .&lt;/P&gt;&lt;P&gt;i want to know why instead of 2 tables , 3 are created.is it my fault?i am new in qlikview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 10:54:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/table-viewer-issue/m-p/228971#M80938</guid>
      <dc:creator />
      <dc:date>2010-12-21T10:54:20Z</dc:date>
    </item>
    <item>
      <title>table viewer issue</title>
      <link>https://community.qlik.com/t5/QlikView/table-viewer-issue/m-p/228972#M80939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is because there would be more than one field common in your two tables so the Qlikview is making synthetic key- to avoid it please make sure there is not more than one field common in both the tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 10:58:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/table-viewer-issue/m-p/228972#M80939</guid>
      <dc:creator />
      <dc:date>2010-12-21T10:58:50Z</dc:date>
    </item>
    <item>
      <title>table viewer issue</title>
      <link>https://community.qlik.com/t5/QlikView/table-viewer-issue/m-p/228973#M80940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thnks.but how summary_1 come into the picture.i never mentioned it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 11:03:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/table-viewer-issue/m-p/228973#M80940</guid>
      <dc:creator />
      <dc:date>2010-12-21T11:03:03Z</dc:date>
    </item>
    <item>
      <title>table viewer issue</title>
      <link>https://community.qlik.com/t5/QlikView/table-viewer-issue/m-p/228974#M80941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Qlikview script when u don't specify a name to the table, it takes the table name from last exec statement &amp;amp; append to -1,-2 &amp;amp; so on.&lt;/P&gt;&lt;P&gt;Like in your case u r loading summary table after that u have specified another load statement for which there is no table name specified so Qlikview assumes it is part of the same script hence name it to "Summary-1".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 11:10:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/table-viewer-issue/m-p/228974#M80941</guid>
      <dc:creator />
      <dc:date>2010-12-21T11:10:33Z</dc:date>
    </item>
    <item>
      <title>table viewer issue</title>
      <link>https://community.qlik.com/t5/QlikView/table-viewer-issue/m-p/228975#M80942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello abcd1234,&lt;/P&gt;&lt;P&gt;with your code&lt;/P&gt;&lt;P style="font-style: italic"&gt;SUMMARY:&lt;BR /&gt;SQL SELECT a.* FROM summary_pcs a;&lt;BR /&gt;store SUMMARY into E:\qlikview\SUMMARY.qvd (qvd);&lt;/P&gt;&lt;P&gt;you create a QV-table called SUMMARY and store it (exactly: a copy) into a qvd-file. But SUMMARY is still in memory. When loading from the qvd-file&lt;/P&gt;&lt;P&gt;&lt;I&gt;LOAD ........&lt;BR /&gt; FROM SUMMARY.QVD (QVD)&lt;BR /&gt;group by timestamp(EVENT_DATE ......&lt;/I&gt;&lt;/P&gt;&lt;P&gt;you read the copy of SUMMARY from the qvd-file into memory, doing some aggregations (sum() etc.). But there exits a table named SUMMARY (the original). So QV calls the "new" one SUMMARY-1 as you didn't specify a new name. And as always QV creates a sync-table with common fieldnames.&lt;/P&gt;&lt;P&gt;Now it is the time to ask you what do you want to achieve at last? Then you can decide wether using a concatenate load or a QV-join to merge SUMMARY and SUMMARY-1 together.Or drop SUMMARY before loading again from qvd. I do not know (yet).&lt;/P&gt;&lt;P&gt;Regards, Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 11:22:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/table-viewer-issue/m-p/228975#M80942</guid>
      <dc:creator />
      <dc:date>2010-12-21T11:22:14Z</dc:date>
    </item>
  </channel>
</rss>

