<?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: Synthetic key in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Synthetic-key/m-p/835996#M658031</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unqualify is the opposite of Qualify-Stating the obvious here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table A&lt;/STRONG&gt; has the below columns&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Col1, Col2, Col3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table B&lt;/STRONG&gt; has the following columns:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Col1,Col2,Col3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you create the two tables you will have three joins based on the name and will cause the synthetic key scenario,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one of the ways to resolve this is to use Qualify one of the Tables to dis associate the two table.So you will do some like:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TableA:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;load &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Col1,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Col2,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Col3 &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="line-height: 1.5em; font-size: 10pt;"&gt;FROM (source)&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table A&lt;/STRONG&gt; will be create with three columns &lt;STRONG&gt;Col1,Col2,Col3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;qualify *;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TableB:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;load &lt;SPAN style="font-size: 10pt;"&gt;Col1,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;Col2,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;Col3 &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;FROM (source)&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table B&lt;/STRONG&gt; will be created with three columns &lt;STRONG&gt;TableB.Col1,TableB.Col2,TableB.Col3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now lets assume that you want to create an associate between the two table and it is based on Col1.&lt;/P&gt;&lt;P&gt;tp do this, you need to &lt;STRONG&gt;unqualify&lt;/STRONG&gt; Column &lt;STRONG&gt;Col1&lt;/STRONG&gt; in &lt;STRONG&gt;TableB&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;qualify *;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;unqualify Col1;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;TableB:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;load &lt;SPAN style="font-size: 10pt;"&gt;Col1,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;Col2,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;Col3 &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 10pt;"&gt;FROM (source)&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by doing this you will end with &lt;STRONG&gt;TableA&lt;/STRONG&gt; and &lt;STRONG&gt;TableB&lt;/STRONG&gt; associated by &lt;STRONG&gt;Col1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unqualify basically removes the table prefix from the column name.&lt;/P&gt;&lt;P&gt;Tables with few column are easier to qualify or unqualify column.&lt;/P&gt;&lt;P&gt;in our example above you could do this for instance, instead of qualifying the whole table first and then unqualify, you could also do the following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;qualify Col2,Col3;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;TableB:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;load &lt;SPAN style="font-size: 10pt;"&gt;Col1,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;Col2,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;Col3 &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 10pt;"&gt;FROM (source)&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;but the above will be impractical if you have a table with many columns and you want to associate to another tables with few columns only.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;I hope this helps. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 May 2015 00:12:52 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-05-12T00:12:52Z</dc:date>
    <item>
      <title>Synthetic key</title>
      <link>https://community.qlik.com/t5/QlikView/Synthetic-key/m-p/835992#M658027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;what is the difference between ways to avoid synthetic keys from the following keys?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) drop field name&lt;/P&gt;&lt;P&gt;2) commenting field name&lt;/P&gt;&lt;P&gt;3) renaming field name&lt;/P&gt;&lt;P&gt;4) using qualify keyword &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 15:13:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Synthetic-key/m-p/835992#M658027</guid>
      <dc:creator />
      <dc:date>2015-05-11T15:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic key</title>
      <link>https://community.qlik.com/t5/QlikView/Synthetic-key/m-p/835993#M658028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;As you know synthetic key is related to the way you associate your tables. Which means the naming of your fields should be carefully througt of. If you have tables that are associated using more than one field , it will cause the synthetic key phenomena.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;1) drop field name: &lt;STRONG&gt;It can either mean to explicitly remove the field from you script or use the drop command to drop it if it is not needed&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;2) commenting field name&amp;nbsp; &lt;STRONG&gt;this means use the double forward slash to comment the field which really means the same as explicitly removing the field from your script.&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;3) renaming field name rename the field using an alias. this is done by using the &lt;STRONG&gt;AS &lt;/STRONG&gt;in your script. example&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Month as specialMonth&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;4) using qualify keyword: When using qualify QV will prefix the field with the table name. SO when you look at the &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;table through table view, column names will be something like table name.column_name. Example&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Employee.empno . &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If you are having this issue, I suggest removing all fields that are redundant and apart of the issue. &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 15:50:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Synthetic-key/m-p/835993#M658028</guid>
      <dc:creator />
      <dc:date>2015-05-11T15:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic key</title>
      <link>https://community.qlik.com/t5/QlikView/Synthetic-key/m-p/835994#M658029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;i understood.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you very much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please clarify what is UNQUALIFY statement.&lt;/P&gt;&lt;P&gt;where to use?&lt;/P&gt;&lt;P&gt;when to use?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the difference between QUALIFY and UNQUALIFY ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which is the best practice in real time?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 20:08:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Synthetic-key/m-p/835994#M658029</guid>
      <dc:creator />
      <dc:date>2015-05-11T20:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic key</title>
      <link>https://community.qlik.com/t5/QlikView/Synthetic-key/m-p/835995#M658030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gmk gvk,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please go through the below link for Qualify and Unqualify .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-7963"&gt;Do you Qualify?- How to use QUALIFY statement&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 20:14:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Synthetic-key/m-p/835995#M658030</guid>
      <dc:creator>ashwanin</dc:creator>
      <dc:date>2015-05-11T20:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic key</title>
      <link>https://community.qlik.com/t5/QlikView/Synthetic-key/m-p/835996#M658031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unqualify is the opposite of Qualify-Stating the obvious here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table A&lt;/STRONG&gt; has the below columns&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Col1, Col2, Col3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table B&lt;/STRONG&gt; has the following columns:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Col1,Col2,Col3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you create the two tables you will have three joins based on the name and will cause the synthetic key scenario,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one of the ways to resolve this is to use Qualify one of the Tables to dis associate the two table.So you will do some like:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TableA:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;load &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Col1,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Col2,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Col3 &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="line-height: 1.5em; font-size: 10pt;"&gt;FROM (source)&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table A&lt;/STRONG&gt; will be create with three columns &lt;STRONG&gt;Col1,Col2,Col3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;qualify *;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TableB:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;load &lt;SPAN style="font-size: 10pt;"&gt;Col1,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;Col2,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;Col3 &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;FROM (source)&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table B&lt;/STRONG&gt; will be created with three columns &lt;STRONG&gt;TableB.Col1,TableB.Col2,TableB.Col3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now lets assume that you want to create an associate between the two table and it is based on Col1.&lt;/P&gt;&lt;P&gt;tp do this, you need to &lt;STRONG&gt;unqualify&lt;/STRONG&gt; Column &lt;STRONG&gt;Col1&lt;/STRONG&gt; in &lt;STRONG&gt;TableB&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;qualify *;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;unqualify Col1;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;TableB:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;load &lt;SPAN style="font-size: 10pt;"&gt;Col1,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;Col2,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;Col3 &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 10pt;"&gt;FROM (source)&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by doing this you will end with &lt;STRONG&gt;TableA&lt;/STRONG&gt; and &lt;STRONG&gt;TableB&lt;/STRONG&gt; associated by &lt;STRONG&gt;Col1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unqualify basically removes the table prefix from the column name.&lt;/P&gt;&lt;P&gt;Tables with few column are easier to qualify or unqualify column.&lt;/P&gt;&lt;P&gt;in our example above you could do this for instance, instead of qualifying the whole table first and then unqualify, you could also do the following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;qualify Col2,Col3;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;TableB:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;load &lt;SPAN style="font-size: 10pt;"&gt;Col1,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;Col2,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;Col3 &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 10pt;"&gt;FROM (source)&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;but the above will be impractical if you have a table with many columns and you want to associate to another tables with few columns only.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;I hope this helps. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2015 00:12:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Synthetic-key/m-p/835996#M658031</guid>
      <dc:creator />
      <dc:date>2015-05-12T00:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic key</title>
      <link>https://community.qlik.com/t5/QlikView/Synthetic-key/m-p/835997#M658032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Here's a good way to use QUALIFY and UNQUALIFY to bring in new tables and you want to link on one known field, but you aren't sure whether you will have name clashes with the rest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;QUALIFY *;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;UNQUALIFY OrderID;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Orders:&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD OrderID,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&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; OrderName,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&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; CustomerName,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM xxx.xls;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;UNQUALIFY *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;This will result in a table with fields like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OrderID&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Orders.OrderName&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Orders.CustomerName&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2015 00:16:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Synthetic-key/m-p/835997#M658032</guid>
      <dc:creator />
      <dc:date>2015-05-12T00:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic key</title>
      <link>https://community.qlik.com/t5/QlikView/Synthetic-key/m-p/835998#M658033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Very specified to use to remove the syn key(if want to rename the field names at a time)&lt;/P&gt;&lt;P&gt;I hope you knew about synkey&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Qualify- can be used to change the all the field names at a time &lt;/P&gt;&lt;P&gt;suppose we product table and field names&lt;/P&gt;&lt;P&gt;prdid,&lt;/P&gt;&lt;P&gt;prdname,&lt;/P&gt;&lt;P&gt;unitcost...etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we use qualify statement to product table then the result would be&lt;/P&gt;&lt;P&gt;prdid.product,&lt;/P&gt;&lt;P&gt;prdname.product,&lt;/P&gt;&lt;P&gt;unitcost.product&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unqualify-it can be used to prevent the qualify statement for the specified fields in the same table and if we are not using unqualify statement at the end of the table, then its automatically applicable to use qualify statement for below table tables with respected table names&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below exp would helps you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Initially we have 3tables(suppliers,products,categories) but if you need to use qualify statement for 1st table(supliers) except some specified fields(suplrid,comp_name) in the same table as like below&lt;/P&gt;&lt;P&gt;&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;Unqualify suplrid,comp_name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;supliers:&lt;/P&gt;&lt;P&gt;load suplrid,&lt;/P&gt;&lt;P&gt;comp_name,&lt;/P&gt;&lt;P&gt;addr,&lt;/P&gt;&lt;P&gt;city&lt;/P&gt;&lt;P&gt;from&amp;lt;&amp;gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unqualify*;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//then the result would be in the data-model &lt;SPAN style="font-size: 13.3333330154419px;"&gt;in the table &lt;/SPAN&gt;we can view with field names &lt;/P&gt;&lt;P&gt;suplrid,comp_name,addr.supliers,city.supliers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//If we are not using unqualify then the resullt would be&lt;/P&gt;&lt;P&gt;suplrid.supliers,comp_name.supliers,addr.supliers,city.supliers&lt;/P&gt;&lt;P&gt;and If we are not using at the end of the table&lt;/P&gt;&lt;P&gt;the result would be for the end of the tables abc.products,....etc and xyz.categories&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;products:&lt;/P&gt;&lt;P&gt;load*&lt;/P&gt;&lt;P&gt;from &amp;lt;&amp;gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;categories:&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;load*&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;from &amp;lt;&amp;gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please correct me if anything wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2015 05:58:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Synthetic-key/m-p/835998#M658033</guid>
      <dc:creator>satishqlik</dc:creator>
      <dc:date>2015-05-12T05:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic key</title>
      <link>https://community.qlik.com/t5/QlikView/Synthetic-key/m-p/835999#M658034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;thank you very much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my doubt is clarified.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2015 13:40:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Synthetic-key/m-p/835999#M658034</guid>
      <dc:creator />
      <dc:date>2015-05-12T13:40:59Z</dc:date>
    </item>
  </channel>
</rss>

