<?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: JOIN IN SQL in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667233#M728940</link>
    <description>&lt;P&gt;is it so ??? Thank you.. Will check that&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Jan 2020 10:28:30 GMT</pubDate>
    <dc:creator>Prabhu1204</dc:creator>
    <dc:date>2020-01-20T10:28:30Z</dc:date>
    <item>
      <title>JOIN IN SQL</title>
      <link>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1666585#M728936</link>
      <description>&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;I am very new to Qlikview Scriptinng. I am having an issue with my script.&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;SQL select&lt;/P&gt;&lt;P&gt;Account.Account key,&lt;BR /&gt;Account.Account NBR,&lt;BR /&gt;Account.vsc key,&lt;BR /&gt;Accoun.Date key&lt;/P&gt;&lt;P&gt;Department. Department NBR,&lt;BR /&gt;Department.Department Date key,&lt;/P&gt;&lt;P&gt;Sale.sale DT Key,&lt;BR /&gt;Sale.sale ID,&lt;BR /&gt;sum(sale) as Total&lt;/P&gt;&lt;P&gt;vendor Account .Account key,&lt;BR /&gt;Vendor Account. name,&lt;BR /&gt;Vendor Account. CD&lt;BR /&gt;vendor Account.vsc key&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Account,&lt;BR /&gt;Department,&lt;BR /&gt;sale,&lt;BR /&gt;Vendor&lt;/P&gt;&lt;P&gt;where Account.Datekey = Department.date key&lt;/P&gt;&lt;P&gt;And Sale.sale DT key = Department.deaptment date key&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;And account. account key = vendor account. account key,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;and Account. vsc key = vendor account.vsc key&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;and // Date condition&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;group by&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;all the fields my the above tables.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I believe the table Account and vendor has inner join by linking the field account key(Bold lines). so, wen there is no data in vendor the account data also getting excluded.&lt;/P&gt;&lt;P&gt;I want the Account data even when there is no vendor data. so I need to perform left join.&lt;/P&gt;&lt;P&gt;Could anyone help me on this.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1666585#M728936</guid>
      <dc:creator>Prabhu1204</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: JOIN IN SQL</title>
      <link>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1666996#M728937</link>
      <description>&lt;P&gt;may be this&lt;/P&gt;&lt;LI-CODE lang="css"&gt;Data:

SQL select

Account.Account key,
Account.Account NBR,
Account.vsc key,
Accoun.Date key

Department. Department NBR,
Department.Department Date key,

Sale.sale DT Key,
Sale.sale ID,
sum(sale) as Total

vendor Account .Account key,
Vendor Account. name,
Vendor Account. CD
vendor Account.vsc key

FROM
Account
inner join Department on Account.Datekey = Department.date key
inner join Sales on Sale.sale DT key = Department.deaptment date key
left join Vendor on account. account key = vendor account. account key
left join Vendor on Account. vsc key = vendor account.vsc key&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 18 Jan 2020 13:03:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1666996#M728937</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2020-01-18T13:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: JOIN IN SQL</title>
      <link>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667137#M728938</link>
      <description>&lt;P&gt;Thanks,,&lt;/P&gt;&lt;P&gt;&amp;nbsp;I tried and the report&amp;nbsp; is getting hung.. Wen I run the above same query in sql the error was "&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;ORA-01652: unable to extend temp segment by 128 in tablespace TEMP&lt;BR /&gt;01652. 00000 - "unable to extend temp segment by %s in tablespace %s"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;May be this is the reason the Qlikview is getting hung&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 06:14:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667137#M728938</guid>
      <dc:creator>Prabhu1204</dc:creator>
      <dc:date>2020-01-20T06:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: JOIN IN SQL</title>
      <link>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667206#M728939</link>
      <description>&lt;P&gt;this looks like the issue in DB settings.&lt;/P&gt;&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/25350703/ora-01652-unable-to-extend-temp-segment-by-128-in-tablespace-system-how-to-ext" target="_blank"&gt;https://stackoverflow.com/questions/25350703/ora-01652-unable-to-extend-temp-segment-by-128-in-tablespace-system-how-to-ext&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 09:47:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667206#M728939</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2020-01-20T09:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: JOIN IN SQL</title>
      <link>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667233#M728940</link>
      <description>&lt;P&gt;is it so ??? Thank you.. Will check that&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 10:28:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667233#M728940</guid>
      <dc:creator>Prabhu1204</dc:creator>
      <dc:date>2020-01-20T10:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: JOIN IN SQL</title>
      <link>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667239#M728941</link>
      <description>&lt;P&gt;Also check that all table name and key columns are joined on proper key field.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 10:38:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667239#M728941</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2020-01-20T10:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: JOIN IN SQL</title>
      <link>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667250#M728942</link>
      <description>&lt;P&gt;Yes I checked, But when i try to execute the script part by part. All inner joins are working fine.. But on implementing left join, i am getting the error msg &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 11:02:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667250#M728942</guid>
      <dc:creator>Prabhu1204</dc:creator>
      <dc:date>2020-01-20T11:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: JOIN IN SQL</title>
      <link>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667257#M728943</link>
      <description>&lt;P&gt;or try to change the order&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="css"&gt;FROM
Account
left join Vendor on account. account key = vendor account. account key
left join Vendor on Account. vsc key = vendor account.vsc key
inner join Department on Account.Datekey = Department.date key
inner join Sales on Sale.sale DT key = Department.deaptment date key&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 20 Jan 2020 11:10:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667257#M728943</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2020-01-20T11:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: JOIN IN SQL</title>
      <link>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667264#M728944</link>
      <description>&lt;P&gt;Tried that too.. As you said it seems the issue is with DB only. because&amp;nbsp; i excluded all other tables and ran only left join part table.. the same issue occurs..&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not able to make even a simple left join condition&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 11:28:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667264#M728944</guid>
      <dc:creator>Prabhu1204</dc:creator>
      <dc:date>2020-01-20T11:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: JOIN IN SQL</title>
      <link>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667265#M728946</link>
      <description>&lt;P&gt;Yes. check this issue with your DBA&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 11:31:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667265#M728946</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2020-01-20T11:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: JOIN IN SQL</title>
      <link>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667379#M728947</link>
      <description>&lt;P&gt;I tried the code in SQL developer and its fine.. Can we use sub query for joining.. ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;i tried and my syntax fails.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 14:45:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667379#M728947</guid>
      <dc:creator>Prabhu1204</dc:creator>
      <dc:date>2020-01-20T14:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: JOIN IN SQL</title>
      <link>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667383#M728949</link>
      <description>&lt;P&gt;We can use subqueries but try to run query in Qlikview with SQL statement&lt;/P&gt;&lt;P&gt;SQL Select * from join conditions....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 14:48:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JOIN-IN-SQL/m-p/1667383#M728949</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2020-01-20T14:48:39Z</dc:date>
    </item>
  </channel>
</rss>

