<?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: how to use Qualify in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/how-to-use-Qualify/m-p/592979#M1122304</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class="example"&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="Code"&gt;&lt;SPAN style="color: #ffffff; background-color: #3399ff;"&gt;Qualify&lt;/SPAN&gt; userName&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="Code"&gt;Load bdesc&amp;nbsp; ,userName&amp;nbsp;&amp;nbsp;&amp;nbsp; from x.csv;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="Code"&gt;Load bdesc&amp;nbsp; ,username, date&amp;nbsp;&amp;nbsp; from y.csv;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The two tables &lt;SPAN class="Bold"&gt;x.csv&lt;/SPAN&gt; and &lt;SPAN class="Bold"&gt;y.csv&lt;/SPAN&gt; are associated only through &lt;SPAN class="Bold"&gt;A&lt;/SPAN&gt;. &lt;BR /&gt;The fields will result: bdesc, date&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , x.userName&amp;nbsp;&amp;nbsp;&amp;nbsp; , y.userName&amp;nbsp;&amp;nbsp;&amp;nbsp; .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Jan 2014 08:54:27 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-01-31T08:54:27Z</dc:date>
    <item>
      <title>how to use Qualify</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-Qualify/m-p/592977#M1122302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have two tables with columns:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Table2:&lt;/P&gt;&lt;P&gt;bdesc&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bdesc&lt;/P&gt;&lt;P&gt;userName&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; userName&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know I can load them both by renaming one column so that there is only one key and no synthetic key but I want to learn to use Qualify.&lt;/P&gt;&lt;P&gt;Hope someone can help me understand Qualify, as I have other tables with same columns where I can't rename them all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jan 2014 08:47:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-Qualify/m-p/592977#M1122302</guid>
      <dc:creator />
      <dc:date>2014-01-31T08:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to use Qualify</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-Qualify/m-p/592978#M1122303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The learning should start from the qv help itself:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From help:&lt;/P&gt;&lt;H1&gt;&lt;A name="kanchor942"&gt;&lt;/A&gt;Qualify&lt;/H1&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;The &lt;SPAN class="Bold"&gt;Qualify&lt;/SPAN&gt; statement is used for switching on the &lt;BR /&gt;qualification of field names, i.e. field names will get the table name as a &lt;BR /&gt;prefix.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;The automatic association of fields with the same name in different tables &lt;BR /&gt;can be suspended by means of the &lt;SPAN class="Bold"&gt;qualify&lt;/SPAN&gt; statement, &lt;BR /&gt;which qualifies the field name with its table name. If qualified, the field &lt;BR /&gt;name(s) will be renamed when found in a table. The new name will be in the form &lt;BR /&gt;of &lt;SPAN class="Italic"&gt;tablename.fieldname&lt;/SPAN&gt;. &lt;SPAN class="Italic"&gt;Tablename&lt;/SPAN&gt; is equivalent to the label of the current table, &lt;BR /&gt;or, if no label exists, to the name appearing after &lt;SPAN class="Bold"&gt;from&lt;/SPAN&gt; &lt;BR /&gt;in &lt;SPAN class="Bold"&gt;load&lt;/SPAN&gt; and &lt;SPAN class="Bold"&gt;select&lt;/SPAN&gt; statements.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;The qualification will be made for all fields loaded after the &lt;SPAN class="Bold"&gt;Qualify&lt;/SPAN&gt; statement.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P class="note"&gt;&lt;SPAN class="Bold"&gt;Note!&lt;/SPAN&gt; &lt;BR /&gt;The &lt;SPAN class="Bold"&gt;qualify&lt;/SPAN&gt; statement should not be used in conjunction with &lt;BR /&gt;partial reload!&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Qualification is always turned off by default at the beginning of script &lt;BR /&gt;execution. Qualification of a field name can be activated at any time using a &lt;BR /&gt;&lt;SPAN class="Bold"&gt;qualify&lt;/SPAN&gt; statement. Qualification can be turned off at &lt;BR /&gt;any time using an &lt;STRONG&gt;unqualify&lt;/STRONG&gt;&amp;nbsp; statement.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;The syntax is:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P class="syntax"&gt;&lt;SPAN class="Bold"&gt;qualify&lt;/SPAN&gt; &lt;SPAN class="Italic"&gt;*fieldlist&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="Italic"&gt;*fieldlist&lt;/SPAN&gt; is a comma separated list of the fields &lt;BR /&gt;for which qualification should be turned on. Using * as field list indicates all &lt;BR /&gt;fields. The wildcard characters * and ? are allowed in field names. Quoting of &lt;BR /&gt;field names may be necessary when wildcards are used.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P class="example"&gt;Examples:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P class="Code"&gt;Qualify B;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P class="Code"&gt;Load A,B from x.csv;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P class="Code"&gt;Load A,B from y.csv;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;The two tables &lt;SPAN class="Bold"&gt;x.csv&lt;/SPAN&gt; and &lt;SPAN class="Bold"&gt;y.csv&lt;/SPAN&gt; are associated only through &lt;SPAN class="Bold"&gt;A&lt;/SPAN&gt;. &lt;BR /&gt;Three fields will result: A, x.B, y.B.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;In an unfamiliar database, it is often useful to start out by making sure &lt;BR /&gt;that only one or a few fields are associated, as illustrated in this &lt;BR /&gt;example:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P class="Code"&gt;qualify *;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P class="Code"&gt;unqualify TransID;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P class="Code"&gt;select * from tab1;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P class="Code"&gt;select * from tab2;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P class="Code"&gt;select * from tab3;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Only &lt;SPAN class="Bold"&gt;TransID&lt;/SPAN&gt; will be used &lt;BR /&gt;for associations between the tables &lt;SPAN class="Italic"&gt;tab1&lt;/SPAN&gt;, &lt;SPAN class="Italic"&gt;tab2&lt;/SPAN&gt; and &lt;SPAN class="Italic"&gt;tab3&lt;/SPAN&gt;.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;


&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jan 2014 08:49:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-Qualify/m-p/592978#M1122303</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-01-31T08:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: how to use Qualify</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-Qualify/m-p/592979#M1122304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class="example"&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="Code"&gt;&lt;SPAN style="color: #ffffff; background-color: #3399ff;"&gt;Qualify&lt;/SPAN&gt; userName&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="Code"&gt;Load bdesc&amp;nbsp; ,userName&amp;nbsp;&amp;nbsp;&amp;nbsp; from x.csv;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="Code"&gt;Load bdesc&amp;nbsp; ,username, date&amp;nbsp;&amp;nbsp; from y.csv;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The two tables &lt;SPAN class="Bold"&gt;x.csv&lt;/SPAN&gt; and &lt;SPAN class="Bold"&gt;y.csv&lt;/SPAN&gt; are associated only through &lt;SPAN class="Bold"&gt;A&lt;/SPAN&gt;. &lt;BR /&gt;The fields will result: bdesc, date&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , x.userName&amp;nbsp;&amp;nbsp;&amp;nbsp; , y.userName&amp;nbsp;&amp;nbsp;&amp;nbsp; .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jan 2014 08:54:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-Qualify/m-p/592979#M1122304</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-31T08:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to use Qualify</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-Qualify/m-p/592980#M1122305</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;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Qualify *; &lt;/P&gt;&lt;P&gt;Unqualify ID; //&amp;nbsp; by using this, you can join tableA and tableB by ID field&lt;/P&gt;&lt;P&gt;Load ID, Name, description from TableA;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load ID, Name, description from TableB;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jan 2014 09:12:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-Qualify/m-p/592980#M1122305</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2014-01-31T09:12:15Z</dc:date>
    </item>
    <item>
      <title>Re: how to use Qualify</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-Qualify/m-p/592981#M1122307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jan 2014 09:16:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-Qualify/m-p/592981#M1122307</guid>
      <dc:creator />
      <dc:date>2014-01-31T09:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to use Qualify</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-Qualify/m-p/592982#M1122310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jan 2014 09:16:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-Qualify/m-p/592982#M1122310</guid>
      <dc:creator />
      <dc:date>2014-01-31T09:16:27Z</dc:date>
    </item>
  </channel>
</rss>

