|
It's possible. On V5R4. I understand the SQE to CQE handling. I'mjust
confused as to why SQE not using the logical.your
--
Michael Schutte
Admin Professional
Try Bob Evans GRILLING SAUSAGE! This summer's hottest destination is
own backyard with Bob Evans Brats and Italian Sausage! For tastyrecipes
using Bob Evans grilling sausage, visithttp://www.BobEvans.com/Recipes
"DeLong, Eric"
<EDeLong@Sallybea
uty.com>To
Sent by: "Midrange Systems Technical
midrange-l-bounce Discussion"
s@xxxxxxxxxxxx <midrange-l@xxxxxxxxxxxx>
cc
07/20/2009 04:34Subject
PM RE: SQL Table Scan Concern.
Please respond to
Midrange Systems
Technical
Discussion
<midrange-l@midra
nge.com>
was
Neill,
The CQE/SQE optimizer was phased in over several releases, so earlier
releases may have had additional constraints. He doesn't mention what
release he's using.
Regarding the use of logical file name in a query, I believe that CQE
able to take advantage of explicit access path references, but SQEprefers
to parse the physical file object to locate associated access paths.To
me, it sounds like his reference to the LF object is forcing CQE tohandle
the query.your
-Eric DeLong
-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx
[mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of Neill Harper
Sent: Monday, July 20, 2009 3:15 PM
To: 'Midrange Systems Technical Discussion'
Subject: RE: SQL Table Scan Concern.
Hi Michael
From my understanding you hit the CQE if any of the following are in
statement:with
INSERT WITH VALUES statement or the target of an INSERT with subselect
statement
Logical files
Tables with Read Triggers
Read-only queries with more than 1000 dataspaces or updateable queries
more than 256 dataspaces.however
DB2(r) Multisystem tables
non-SQL queries, for example the QQQQry API, Query/400, or OPNQRYF
Otherwise you use the SQE.
It is generally accepted that the SQE is better/ faster than CQE,
perhaps in this instance you have found a query that the CQE is betterat
than the SQE.CQE is
If you want to know more I'd suggest some googling on the QE and CQE.
Neill
May be you have found a particular scenario where going through the
faster than the SQEyour
-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx
[mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of
Michael_Schutte@xxxxxxxxxxxx
Sent: 20 July 2009 20:45
To: Midrange Systems Technical Discussion
Subject: Re: SQL Table Scan Concern.
I think that you might have it backwards.
When using the logical it works as expected, quickly. But using the
Physical, it does a table scan.
Good piece of information... the physical is a non-keyed physical.
Anyway have fun on vaca.
--
Michael Schutte
Admin Professional
Try Bob Evans GRILLING SAUSAGE! This summer's hottest destination is
own backyard with Bob Evans Brats and Italian Sausage! For tastyrecipes
using Bob Evans grilling sausage, visithttp://www.BobEvans.com/Recipes
could
midrange-l-bounces@xxxxxxxxxxxx wrote on 07/20/2009 03:31:25 PM:
Several issues. If you have select/omit logicals on the table it
isbe dropping into the old query engine. You need to specify in thefile
options
ignore the logicals with select/omit.to
Going though the logical will do nothing. It will just using the
logical
get the physical file and then go looking for the indexes it thinks
mailingcorrect.<EDeLong@xxxxxxxxxxxxxxx>wrote:
As far as not using the copy in QTEMP did you create the table using
SQL using the generate temp file option? (DECLARE GLOBAL TEMPORARY
TABLE) If not, I don't think SQL would even know the table exists.
I am leaving on vacation so I can't research this further but others
can help you with more details.
On Mon, Jul 20, 2009 at 12:59 PM, DeLong, Eric
optimizerAre there a lot of logicals over that file? While I haven't seen
this myself for a long time, there was a time when the query
optimizer would timeout before it go to search a particular access
path, so the
Michael_Schutte@xxxxxxxxxxxxwould punt (force table scan). I know I saw this prior to SQE...
-Eric DeLong
-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx [mailto:
midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of
inSent: Monday, July 20, 2009 1:28 PM
To: Midrange Systems Technical Discussion
Subject: SQL Table Scan Concern.
In several web programs, I thought I was being smart by creating
tables
criteria.QTEMP that would contain selection criteria to query against large
data files because we don't have logicals that met my selection
I
Anyway,have one that is acting kinda strange. It's not picking a locigal
by company and date over the large data file.
The QTEMP Table only has company and date in the file.
i.e.
001 20090601
001 20090602
001 20090604
001 20090605
Notice that one date is missing. The user wants to be able to select
certain days of the week. ie Weekdays only for an entire month.
byI'm trying join this file to a large data file that does have an
index
replacecompany and date.
But VisualExplain is telling me that it's doing a table scan over
RTA60 because the cost is better. Which I know that isn't true. If
I
logicalRTA60 with the locigal name, it runs as I expect. I hate to use the
forin the query because I also have to give the user the ability to run
user'sselect restaurants (so there's another table in qtemp that has the
andselection of restaurants). But nevermind that for now. Just
company
yourdate I get horrible response time when listing the physical in
the query. Anybody know why?
select a.*
from sar_dates b
join rta60 a on
a.tcono = b.company and a.tdate = b.dateiso
Does a table scan
select a.*
from sar_dates b
join rta60L9 a on
a.tcono = b.company and a.tdate = b.dateiso
Makes use of the RTA60L9 logical.
Thanks in advance for the help.
--
Michael Schutte
Admin Professional
Try Bob Evans GRILLING SAUSAGE! This summer's hottest destination is
recipesown backyard with Bob Evans Brats and Italian Sausage! For tasty
listusing Bob Evans grilling sausage, visit
http://www.BobEvans.com/Recipes
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L)
mailing
To post a message email: MIDRANGE-L@xxxxxxxxxxxx To subscribe,--
unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx Before posting, please
take a moment to review the archives at
http://archive.midrange.com/midrange-l.
This is the Midrange Systems Technical Discussion (MIDRANGE-L)
listlist
To post a message email: MIDRANGE-L@xxxxxxxxxxxx To subscribe,
unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx Before posting, please take
a moment to review the archives at
http://archive.midrange.com/midrange-l.
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing
To post a message email: MIDRANGE-L@xxxxxxxxxxxxlist
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.
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.