<?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: SQL with multipe Inner joins - Performance (UNION ALL) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345542#M1398091</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How would you use a join with a single table? Join to itself? &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Oct 2009 08:11:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-30T08:11:21Z</dc:date>
    <item>
      <title>SQL with multipe Inner joins - Performance (UNION ALL)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345539#M1398088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the following SQL:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT DISTINCT&lt;/P&gt;&lt;P&gt;         cciht_clm~recn&lt;/P&gt;&lt;P&gt;         cciht_clm~recnroot&lt;/P&gt;&lt;P&gt;         cciht_clm~clmfileno&lt;/P&gt;&lt;P&gt;         cciht_ip~ippers&lt;/P&gt;&lt;P&gt;    INTO TABLE lt_select&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   INTO (lw_recn,&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         lw_recnroot,&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         wa_active-clmfileno,&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         wa_active-ein)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     FROM ( ( cciht_ipeva&lt;/P&gt;&lt;P&gt;      INNER JOIN cciht_clm ON cciht_clm&lt;SUB&gt;recntipeva = cciht_ipeva&lt;/SUB&gt;recn  AND&lt;/P&gt;&lt;P&gt;                              cciht_clm&lt;SUB&gt;recnroot   = cciht_ipeva&lt;/SUB&gt;recnroot )&lt;/P&gt;&lt;P&gt;      INNER JOIN cciht_ip  ON cciht_ip&lt;SUB&gt;recn        = cciht_ipeva&lt;/SUB&gt;recntip AND&lt;/P&gt;&lt;P&gt;                              cciht_ip&lt;SUB&gt;recnroot    = cciht_ipeva&lt;/SUB&gt;recnroot )&lt;/P&gt;&lt;P&gt;     FOR ALL entries IN lt_keys&lt;/P&gt;&lt;P&gt;   WHERE cciht_ipeva~recnroot = lt_keys-recnroot&lt;/P&gt;&lt;P&gt;     AND cciht_ipeva~valfr LE sy-datum&lt;/P&gt;&lt;P&gt;     AND cciht_ipeva~valto GE sy-datum&lt;/P&gt;&lt;P&gt;     AND cciht_clm~recn       = lt_keys-recnclm&lt;/P&gt;&lt;P&gt;     AND cciht_clm~recnroot   = lt_keys-recnroot&lt;/P&gt;&lt;P&gt;     AND cciht_clm~valfr LE sy-datum&lt;/P&gt;&lt;P&gt;     AND cciht_clm~valto GE sy-datum&lt;/P&gt;&lt;P&gt;     AND cciht_ip~recnroot    = lt_keys-recnroot&lt;/P&gt;&lt;P&gt;     AND cciht_ip~iptype      = 'INJ'&lt;/P&gt;&lt;P&gt;     AND cciht_ip~valfr LE sy-datum&lt;/P&gt;&lt;P&gt;     AND cciht_ip~valto GE sy-datum.       &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The performance is bad. When I run a trace and do EXPLAIN, I notice it does UNION ALL's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Explanation of query block number: 1   step: 1&lt;/P&gt;&lt;P&gt;Query block type is UNION ALL&lt;/P&gt;&lt;P&gt;Performance appears to be bad&lt;/P&gt;&lt;P&gt;Method:&lt;/P&gt;&lt;P&gt;.          access new table.&lt;/P&gt;&lt;P&gt;.          unknown or no prefetch is used&lt;/P&gt;&lt;P&gt;.          new table:&lt;/P&gt;&lt;P&gt;.                      .&lt;/P&gt;&lt;P&gt;.                      table space locked in mode:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas on how I can optimize this statement?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 15:20:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345539#M1398088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-29T15:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: SQL with multipe Inner joins - Performance (UNION ALL)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345540#M1398089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try avoiding more than one table in join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please also check that index is being used for each database fetch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also , Chech internal table lt_keys for initial before usinf FOR ALL ENTRIES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Harsh Bhalla on Oct 30, 2009 10:02 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 04:31:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345540#M1398089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-30T04:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: SQL with multipe Inner joins - Performance (UNION ALL)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345541#M1398090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; Try avoiding more than one table in join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is quite funny actually &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 08:09:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345541#M1398090</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2009-10-30T08:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: SQL with multipe Inner joins - Performance (UNION ALL)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345542#M1398091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How would you use a join with a single table? Join to itself? &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 08:11:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345542#M1398091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-30T08:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: SQL with multipe Inner joins - Performance (UNION ALL)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345543#M1398092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
WHERE cciht_ipeva~recnroot = lt_keys-recnroot
AND cciht_ipeva~valfr LE sy-datum
AND cciht_ipeva~valto GE sy-datum
AND cciht_clm~recn = lt_keys-recnclm
AND cciht_clm~recnroot = lt_keys-recnroot
AND cciht_clm~valfr LE sy-datum
AND cciht_clm~valto GE sy-datum
AND cciht_ip~recnroot = lt_keys-recnroot
AND cciht_ip~iptype = 'INJ'
AND cciht_ip~valfr LE sy-datum
AND cciht_ip~valto GE sy-datum. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;this is somehow nonsense. 2/3 of it are ON-conditions for the JOIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please read somewhere in Wikipedia or so,  what indices can do, and decide which table should be used first.&lt;/P&gt;&lt;P&gt;Write conditions for that table and ON-conditions for the other one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You don't need the DISTINCT, the FAE is distinct on the total result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 08:15:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345543#M1398092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-30T08:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: SQL with multipe Inner joins - Performance (UNION ALL)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345544#M1398093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Join to itself? &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why not ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 08:15:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345544#M1398093</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-30T08:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: SQL with multipe Inner joins - Performance (UNION ALL)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345545#M1398094</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;i structured your statement a little bit:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FROM ( ( cciht_ipeva
INNER JOIN cciht_clm 
ON cciht_clm~recntipeva = cciht_ipeva~recn 
AND cciht_clm~recnroot = cciht_ipeva~recnroot )

INNER JOIN cciht_ip 
ON cciht_ip~recn = cciht_ipeva~recntip 
AND cciht_ip~recnroot = cciht_ipeva~recnroot )

FOR ALL entries IN lt_keys

WHERE cciht_ipeva~recnroot = lt_keys-recnroot
AND cciht_ipeva~valfr LE sy-datum
AND cciht_ipeva~valto GE sy-datum

AND cciht_clm~recn = lt_keys-recnclm
AND cciht_clm~recnroot = lt_keys-recnroot
AND cciht_clm~valfr LE sy-datum
AND cciht_clm~valto GE sy-datum

AND cciht_ip~recnroot = lt_keys-recnroot
AND cciht_ip~iptype = 'INJ'
AND cciht_ip~valfr LE sy-datum
AND cciht_ip~valto GE sy-datum.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use the values from one line in of your internal table lt_keys:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apply the where conditions for each table in the where condition blocks  in se16 and&lt;/P&gt;&lt;P&gt;check the result set for each table. For the table with the smalles result set check if&lt;/P&gt;&lt;P&gt;the where conditions are supported with indexes. For the other tables check if the&lt;/P&gt;&lt;P&gt;JOIN conditions (ON) are supported with indexes. And as Siegfried said you can&lt;/P&gt;&lt;P&gt; ommit the distinct and those where conditions that are not the starting point and are&lt;/P&gt;&lt;P&gt;used in the joins. If necessary create supporting indexes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when the execution plan on DB2 says: "Performance appears to be good" or "Performance appears to be excellent" &lt;/P&gt;&lt;P&gt;your have done a good job &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hermann&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 09:17:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345545#M1398094</guid>
      <dc:creator>HermannGahm</dc:creator>
      <dc:date>2009-10-30T09:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: SQL with multipe Inner joins - Performance (UNION ALL)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345546#M1398095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Seigfried,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any peculiar situation where we may have to use a join on a table to itself? I know its syntactically correct and works. But dont see any reason why would anyone use it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 09:33:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345546#M1398095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-30T09:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: SQL with multipe Inner joins - Performance (UNION ALL)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345547#M1398096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can only think of father/child relationships between different rows of the same table, e.g. table ESLH.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 09:36:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345547#M1398096</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2009-10-30T09:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: SQL with multipe Inner joins - Performance (UNION ALL)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345548#M1398097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;and for performance tuning in can make sense to do so.&lt;/P&gt;&lt;P&gt;E.g. in order to "delay" a table access.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 09:59:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345548#M1398097</guid>
      <dc:creator>HermannGahm</dc:creator>
      <dc:date>2009-10-30T09:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: SQL with multipe Inner joins - Performance (UNION ALL)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345549#M1398098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;there are of course demands for self-joins for functional reasons:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is or was a table in the SAP-standard which was nearly only accessed by slef-join, that is the AUSP&lt;/P&gt;&lt;P&gt;it contains properties of materials&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;material    property  property_value&lt;/P&gt;&lt;P&gt;A                color      blue&lt;/P&gt;&lt;P&gt;A                size       1m&lt;/P&gt;&lt;P&gt;B  ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You want all material with color 'blue' and size '1m'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or check DD03L, tabnames and fieldnames, select all tables which have the fields 'spras' and 'country'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 13:46:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345549#M1398098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-30T13:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: SQL with multipe Inner joins - Performance (UNION ALL)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345550#M1398099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How am joining table to itself?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The INNER joins are between IPEVA and IP &amp;amp; IPEVA and CLM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 13:58:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345550#M1398099</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-30T13:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: SQL with multipe Inner joins - Performance (UNION ALL)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345551#M1398100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think you are - the discussion got side tracked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 14:11:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345551#M1398100</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-30T14:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: SQL with multipe Inner joins - Performance (UNION ALL)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345552#M1398101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oops!! Sorry Raynald. I just used your thread space for a suggestion , thoughts as to when self-joins will be useful. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you Thomas, Hermann and Seigfried for the examples quoted.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 14:33:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345552#M1398101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-30T14:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: SQL with multipe Inner joins - Performance (UNION ALL)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345553#M1398102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@Rob,&lt;/P&gt;&lt;P&gt;self-joins are rarely asked here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There actual question is very common, nothing and has already enough answers. Checks for indizes and learn about ON-conditions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2009 13:17:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-with-multipe-inner-joins-performance-union-all/m-p/6345553#M1398102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-02T13:17:54Z</dc:date>
    </item>
  </channel>
</rss>

