<?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: Resident in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Resident/m-p/953755#M327919</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Indeed, the JOIN prefix works both with a SELECT statement and with a LOAD statement. It will always be handled by the QV Script engine. The preceding LOAD isn't required, as it is implied anyway.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Dec 2015 14:56:48 GMT</pubDate>
    <dc:creator>Peter_Cammaert</dc:creator>
    <dc:date>2015-12-04T14:56:48Z</dc:date>
    <item>
      <title>Resident</title>
      <link>https://community.qlik.com/t5/QlikView/Resident/m-p/953751#M327915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oracle Database and i want to use resident with a nickname.&lt;/P&gt;&lt;P&gt;Something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select *&lt;/P&gt;&lt;P&gt;from table1 t1&lt;/P&gt;&lt;P&gt;Resident [table2] t2&lt;/P&gt;&lt;P&gt;where t2.id = t1.id&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2015 14:10:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident/m-p/953751#M327915</guid>
      <dc:creator />
      <dc:date>2015-12-04T14:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: Resident</title>
      <link>https://community.qlik.com/t5/QlikView/Resident/m-p/953752#M327916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can JOIN your tables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JOIN (table2)&lt;/P&gt;&lt;P&gt;SELECT * &lt;/P&gt;&lt;P&gt;FROM table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QV will perform the join using common field names as keys, assuming the only common field name is id, it should work as expected. See also the HELP for JOIN prefix and possible further join prefixes, INNER, OUTER, LEFT, RIGHT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2015 14:24:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident/m-p/953752#M327916</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-12-04T14:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: Resident</title>
      <link>https://community.qlik.com/t5/QlikView/Resident/m-p/953753#M327917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok, but is it not a problem if this is oracle?&lt;/P&gt;&lt;P&gt;In oracle you can't use this statement. you have to use select ... from .... where &lt;/P&gt;&lt;P&gt;And i want to mention the common fields. then it is clear on which columns it joins.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2015 14:36:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident/m-p/953753#M327917</guid>
      <dc:creator />
      <dc:date>2015-12-04T14:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: Resident</title>
      <link>https://community.qlik.com/t5/QlikView/Resident/m-p/953754#M327918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If both table1 and table2 are within your Oracle DB, you can let the DBMS join your tables, this would even be better than doing in within QV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've understood that table2 is not in Oracle DB, but it's a resident table in QV data model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The JOIN prefix should be handled by QV, not by the Oracle DBMS. I think the syntax is correct, but you can also try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;JOIN (table2)&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;LOAD *; &lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;SELECT *&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;FROM table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to make it more clear. And if re-reading your SQL join statement, you probably want an INNER JOIN:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;INNER JOIN (table2)&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;LOAD *;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;SELECT *&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;FROM table1;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2015 14:45:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident/m-p/953754#M327918</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-12-04T14:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Resident</title>
      <link>https://community.qlik.com/t5/QlikView/Resident/m-p/953755#M327919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Indeed, the JOIN prefix works both with a SELECT statement and with a LOAD statement. It will always be handled by the QV Script engine. The preceding LOAD isn't required, as it is implied anyway.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2015 14:56:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident/m-p/953755#M327919</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-12-04T14:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: Resident</title>
      <link>https://community.qlik.com/t5/QlikView/Resident/m-p/953756#M327920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are correct!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2015 15:37:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident/m-p/953756#M327920</guid>
      <dc:creator />
      <dc:date>2015-12-04T15:37:36Z</dc:date>
    </item>
  </channel>
</rss>

