|
From: "Charles Wilt" <charles.wilt@xxxxxxxxx><midrange-l@xxxxxxxxxxxxxxxxxx>,
To: "Midrange Systems Technical Discussion"
Date: 12/01/2021 05:20 PMno
Subject: [EXTERNAL] Re: SQL View vs CTE
Sent by: "MIDRANGE-L" <midrange-l-bounces@xxxxxxxxxxxxxxxxxx>
Greg,
IBM'ers have always told me that a view is performance neutral, is that
longer the case?inside
Or is it really the difference between having the SELECT <whaterver>
or outside a CTE?in
To clarify:
--case 1
with cte1 as (SELECT1)
, cte2 as (select <...> from cte1 join <...>)
<...>
--case 2
create view myview as (SELECT1);
with cte1 as (select from myview)
, cte2 as (select <...> from cte1 join <...>)
<...>
--case 3
create view myview as (SELECT1);
with cte2 as (select <...> from myview join <...>)
<...>
Could there be a difference between case 1 & 2, or is it only if at all
case 3?wrote:
Thanks,
Charles
On Wed, Dec 1, 2021 at 3:36 PM Timothy P Clark <timclark@xxxxxxxxxx>
a
Hi Greg,
The answer is a solid "maybe"... Although from an end-user perspective
mayCTE and a view can help to solve the same problem (i.e. separating a
complex query into manageable pieces), they have slightly different
semantics from an SQL language perspective. As a result, the optimizer
sureend up implementing them somewhat differently. Without knowing more
details about the query and seeing the VE, it's impossible to say for
12/01/2021whether a view would improve performance, but it is worth a try.
Thank you,
Tim Clark
DB2 for IBM i / SQL Optimizer
"MIDRANGE-L" <midrange-l-bounces@xxxxxxxxxxxxxxxxxx> wrote on
siA1ZOg&r=oCmVbiwufH6yM8U29GriOcB5LKDoEG8y1HZD-01RVtc&m=WBKqmJteet6e501ZLxcZk-03:24:58 PM:
From: "Greg Wilburn" <gwilburn@xxxxxxxxxxxxxxxxxxxxxxx><midrange-l@xxxxxxxxxxxxxxxxxx>,
To: "Midrange Systems Technical Discussion"
Date: 12/01/2021 03:25 PM
Subject: [EXTERNAL] SQL View vs CTE
Sent by: "MIDRANGE-L" <midrange-l-bounces@xxxxxxxxxxxxxxxxxx>
I have a complex SQL statement that I'm going to use as a data
source for a browser application. In ACS Run SQL scripts it
consistently takes about 22 seconds to run. The statement contains
a CTE followed by a join to the CTE. The files involved have a
large number of records.
So I'm wondering if someone can tell me whether creating an SQL View
in place of the CTE would yield any performance increase (I haven't
spent much time looking at the Visual Explain in ACS).
I'm thinking it wouldn't make much difference.
TIA
Greg
[Logo]<INVALID URI REMOVED
u=https-3A__www.totalbizfulfillment.com_&d=DwICAg&c=jf_iaSHvJObTbx-
_9XSXrAi-Zgz0os-kr7fk&s=K4gHcy_mh6pHQ0nK-cjRjUGSHzMi_rDbnJrM52kdql0&e=
mailto:gwilburn@xxxxxxxxxxxxxxxxxxxxxxxGreg WilburnDirector of IT
301.895.3792 ext. 1231
301.895.3895 direct
gwilburn@xxxxxxxxxxxxxxxxxxxxxxx<
siA1ZOg&r=oCmVbiwufH6yM8U29GriOcB5LKDoEG8y1HZD-01RVtc&m=WBKqmJteet6e501ZLxcZk-
1 Corporate Dr
Grantsville, MD 21536
www.totalbizfulfillment.com<https://urldefense.proofpoint.com/v2/
url?
u=http-3A__www.totalbizfulfillment.com&d=DwICAg&c=jf_iaSHvJObTbx-
_9XSXrAi-Zgz0os-kr7fk&s=pvTy86UcIeCfu8fWED6C0xlgFHnoWkEXt6jWSP1yQMY&e= >
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.