<?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: Joins in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Joins/m-p/439180#M1155151</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ctrl + F is just a find and replace &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Mar 2013 20:51:35 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-03-13T20:51:35Z</dc:date>
    <item>
      <title>Joins</title>
      <link>https://community.qlik.com/t5/QlikView/Joins/m-p/439178#M1155147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&amp;nbsp; I wanted to know if there was a way I could just quickly hit some kind of button or something to clear all the joins that Qlikview created?&amp;nbsp; I am working with tables that have the same names for fields but they are not supposed to be joined; the data is different.&amp;nbsp; Instead of correcting each join is there a quick way to eliminate all the joins and then establish them myself?&amp;nbsp; Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2013 20:42:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joins/m-p/439178#M1155147</guid>
      <dc:creator />
      <dc:date>2013-03-13T20:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Joins</title>
      <link>https://community.qlik.com/t5/QlikView/Joins/m-p/439179#M1155149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;using Ctrl + F&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2013 20:46:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joins/m-p/439179#M1155149</guid>
      <dc:creator>er_mohit</dc:creator>
      <dc:date>2013-03-13T20:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: Joins</title>
      <link>https://community.qlik.com/t5/QlikView/Joins/m-p/439180#M1155151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ctrl + F is just a find and replace &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2013 20:51:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joins/m-p/439180#M1155151</guid>
      <dc:creator />
      <dc:date>2013-03-13T20:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: Joins</title>
      <link>https://community.qlik.com/t5/QlikView/Joins/m-p/439181#M1155152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Qlikview has feature to join the fields with same name. You won't stop that which is the speciality of Qlikview.&lt;/P&gt;&lt;P&gt;What you need to do is rename the fields which should not join.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2013 21:38:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joins/m-p/439181#M1155152</guid>
      <dc:creator>CELAMBARASAN</dc:creator>
      <dc:date>2013-03-13T21:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: Joins</title>
      <link>https://community.qlik.com/t5/QlikView/Joins/m-p/439182#M1155153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The join will happen automatically when the field name is the same. You can't change that behavior. You can rename the fields so they don't link up. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A quick way to do this is the QUALIFY script statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QUALIFY *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That will preprend the table name to each field name giving you unique field names for each table. You follow the above QUALIFY with an UNQUALIFY to name the fields that you do want to link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;QUALIFY *;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;UNQUALIFY CustomerID, ProductIID;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Orders:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;SQL SELECT * FROM Orders;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Customers:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;SQL SELECT * FROM Customers;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Products:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;SQL SELECT * FROM Products;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Mar 2013 00:31:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joins/m-p/439182#M1155153</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2013-03-14T00:31:32Z</dc:date>
    </item>
  </channel>
</rss>

