<?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 Performance issue in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Performance-issue/m-p/401617#M1160606</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am loading 2 tables and performing inner join between them....&lt;/P&gt;&lt;P&gt;first table is coming from qvd which has 555,000 records(1 yr of data)&lt;/P&gt;&lt;P&gt;Second table is a sql query which has 1,530,000 records(5 yrs of data)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to load only 1 yr of data from sql query table(2nd table) with respect to qvd table(1st table), But when I am doing inner join its loading 1st table in 1 minute but when it comes to 2nd table its checking with 5 yrs of data and taking time....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am wondering is there any way to give condition on 2nd table with respect to 1st table,where 1st table is qvd table and 2nd table is sql table.......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Dec 2012 18:27:37 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-12-03T18:27:37Z</dc:date>
    <item>
      <title>Performance issue</title>
      <link>https://community.qlik.com/t5/QlikView/Performance-issue/m-p/401617#M1160606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am loading 2 tables and performing inner join between them....&lt;/P&gt;&lt;P&gt;first table is coming from qvd which has 555,000 records(1 yr of data)&lt;/P&gt;&lt;P&gt;Second table is a sql query which has 1,530,000 records(5 yrs of data)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to load only 1 yr of data from sql query table(2nd table) with respect to qvd table(1st table), But when I am doing inner join its loading 1st table in 1 minute but when it comes to 2nd table its checking with 5 yrs of data and taking time....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am wondering is there any way to give condition on 2nd table with respect to 1st table,where 1st table is qvd table and 2nd table is sql table.......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2012 18:27:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Performance-issue/m-p/401617#M1160606</guid>
      <dc:creator />
      <dc:date>2012-12-03T18:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issue</title>
      <link>https://community.qlik.com/t5/QlikView/Performance-issue/m-p/401618#M1160607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think I am not clear, I want to go deeper and explain you guys...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In first table I have a field refference Id&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In &lt;A&gt;&lt;/A&gt;&lt;A&gt;&lt;/A&gt;&lt;A&gt;&lt;/A&gt;&lt;A&gt;&lt;/A&gt;&lt;A&gt;&lt;/A&gt;&lt;A&gt;&lt;/A&gt;&lt;A&gt;&lt;/A&gt;second table I have Refference Id and some other fields.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to join two tables on Refference Id....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am doing 1st table Inner join 2nd table....but here I want to load data from 2nd table which same refference Id in 1st table...In Qlikview when I do inner join its loading&amp;nbsp; 1st table and also fetching all records from 2nd table while script execution.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way other than inner join&amp;nbsp; to join two tables with my given&amp;nbsp; conditions......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2012 18:47:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Performance-issue/m-p/401618#M1160607</guid>
      <dc:creator />
      <dc:date>2012-12-03T18:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issue</title>
      <link>https://community.qlik.com/t5/QlikView/Performance-issue/m-p/401619#M1160608</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;You can use the where exists condition on the second table to read only that data which is existing in the first table (assuming your first table loads 1 year of data and has a key field that is used to join both the tables).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The syntax should look something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table 1:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;ID,&lt;/P&gt;&lt;P&gt;Field1,&lt;/P&gt;&lt;P&gt;Field2,&lt;/P&gt;&lt;P&gt;Field3&lt;/P&gt;&lt;P&gt;from Table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inner join (Table 1)&lt;/P&gt;&lt;P&gt;//Table 2 &lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;ID,&lt;/P&gt;&lt;P&gt;Field4,&lt;/P&gt;&lt;P&gt;Field5,&lt;/P&gt;&lt;P&gt;Field6,&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;Fieldn&lt;/P&gt;&lt;P&gt;from Table 2&lt;/P&gt;&lt;P&gt;where exists (ID,ID);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Khaled.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2012 19:47:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Performance-issue/m-p/401619#M1160608</guid>
      <dc:creator />
      <dc:date>2012-12-03T19:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issue</title>
      <link>https://community.qlik.com/t5/QlikView/Performance-issue/m-p/401620#M1160609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.....Its working perfect......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2012 20:15:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Performance-issue/m-p/401620#M1160609</guid>
      <dc:creator />
      <dc:date>2012-12-03T20:15:09Z</dc:date>
    </item>
  </channel>
</rss>

