<?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 Extracting Data from the same table twice in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Extracting-Data-from-the-same-table-twice/m-p/174205#M43111</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have altered the field names to make them unique, but how do I change the table name?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Mar 2011 12:10:39 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-03-22T12:10:39Z</dc:date>
    <item>
      <title>Extracting Data from the same table twice</title>
      <link>https://community.qlik.com/t5/QlikView/Extracting-Data-from-the-same-table-twice/m-p/174203#M43109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to establish if works orders have been raised to manufacture parts internally.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So we sell to the customer F200-10 which is an assembly and a works order has to be raised to assembly this product.&lt;/P&gt;&lt;P&gt;The product consists of a number of parts, most are bought out items so are raised using a Purchase Order (Not a problem), but some are manufactured or sub assemblies which need a works order.&lt;/P&gt;&lt;P&gt;So as I see it I need to extract the data from my works order table twice chaning all field names by prefixing with a "sub_" or similar.&lt;/P&gt;&lt;P&gt;I tried adding the following to the end of my extract section but it made no difference and combined the two tables&lt;/P&gt;&lt;P&gt;FROM pelive.scheme.bmwodm as bmwodm_sub;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could create a view in SQL to achieve this but would rather contain it in QlikView.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 11:57:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extracting-Data-from-the-same-table-twice/m-p/174203#M43109</guid>
      <dc:creator />
      <dc:date>2011-03-22T11:57:56Z</dc:date>
    </item>
    <item>
      <title>Extracting Data from the same table twice</title>
      <link>https://community.qlik.com/t5/QlikView/Extracting-Data-from-the-same-table-twice/m-p/174204#M43110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This alias is only within the SQL query. In order to get two different tables you will have to change the QlikView table name and also, QlikView will concatenate tables that have identical structure, so you will have to either add a dummy column and get rid of it later, or tell QlikView to not concatenate them together by using the NoConcatenate prefix.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 12:04:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extracting-Data-from-the-same-table-twice/m-p/174204#M43110</guid>
      <dc:creator />
      <dc:date>2011-03-22T12:04:45Z</dc:date>
    </item>
    <item>
      <title>Extracting Data from the same table twice</title>
      <link>https://community.qlik.com/t5/QlikView/Extracting-Data-from-the-same-table-twice/m-p/174205#M43111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have altered the field names to make them unique, but how do I change the table name?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 12:10:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extracting-Data-from-the-same-table-twice/m-p/174205#M43111</guid>
      <dc:creator />
      <dc:date>2011-03-22T12:10:39Z</dc:date>
    </item>
    <item>
      <title>Extracting Data from the same table twice</title>
      <link>https://community.qlik.com/t5/QlikView/Extracting-Data-from-the-same-table-twice/m-p/174206#M43112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You just go:&lt;/P&gt;&lt;P&gt;[Table 1]:&lt;/P&gt;&lt;P&gt;LOAD ...&lt;/P&gt;&lt;P&gt;[Table 2]:&lt;/P&gt;&lt;P&gt;LOAD ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 12:12:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extracting-Data-from-the-same-table-twice/m-p/174206#M43112</guid>
      <dc:creator />
      <dc:date>2011-03-22T12:12:31Z</dc:date>
    </item>
    <item>
      <title>Extracting Data from the same table twice</title>
      <link>https://community.qlik.com/t5/QlikView/Extracting-Data-from-the-same-table-twice/m-p/174207#M43113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi hutchs&lt;/P&gt;&lt;P&gt;as of my understanding, am giving solutions,&lt;/P&gt;&lt;P&gt;LOAD a,&lt;/P&gt;&lt;P&gt;a as sub_a,&lt;/P&gt;&lt;P&gt;b,&lt;/P&gt;&lt;P&gt;b as sub_b,&lt;/P&gt;&lt;P&gt;from sourcefile;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(or do like below)&lt;/P&gt;&lt;P&gt;LOAD a,b from Sourcefile;&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;LOAD a as sub_a,&lt;/P&gt;&lt;P&gt;b as sub_b&lt;/P&gt;&lt;P&gt;from Sourcefile;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 12:13:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extracting-Data-from-the-same-table-twice/m-p/174207#M43113</guid>
      <dc:creator />
      <dc:date>2011-03-22T12:13:26Z</dc:date>
    </item>
    <item>
      <title>Extracting Data from the same table twice</title>
      <link>https://community.qlik.com/t5/QlikView/Extracting-Data-from-the-same-table-twice/m-p/174208#M43114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, this works a treat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;Iassen Ivanov wrote:&lt;BR /&gt;[Table 1]:&lt;BR /&gt;LOAD ...&lt;BR /&gt;[Table 2]:&lt;BR /&gt;LOAD ...&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 12:40:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extracting-Data-from-the-same-table-twice/m-p/174208#M43114</guid>
      <dc:creator />
      <dc:date>2011-03-22T12:40:44Z</dc:date>
    </item>
    <item>
      <title>Extracting Data from the same table twice</title>
      <link>https://community.qlik.com/t5/QlikView/Extracting-Data-from-the-same-table-twice/m-p/174209#M43115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great! Good to hear!&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 12:43:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extracting-Data-from-the-same-table-twice/m-p/174209#M43115</guid>
      <dc:creator />
      <dc:date>2011-03-22T12:43:55Z</dc:date>
    </item>
  </channel>
</rss>

