> > Hi all,
> >
[quoted text clipped - 37 lines]
>
> 2. Double it and see if that works. If not, double it again.
1. Are the order by columns from a single table. If so, an index in
that order, possibly clustering would help trememdously. Are
statistics current? Also, check to see if the statement is overflowing
your sort heap and doing disk writes.
2. I hated the double it answer. That's the answer you get doing no
research. Doubling it never gives you a why. First, I'd remove the
distinct. It doesn't add anything functionally (the max of the unique
values would be the max of all values) and may be causing an additional
sort (or really causing db2 to use a inaccurate plan). I'd make sure
my runstasts are up to date. I'm assuming the query is a little more
complex and contains some join predicates for c1, c2. One of the db2
registry parameters I found useful in the partitioned environment is
DB2_REDUCED_OPTIMIZATION. I set it equal to somewhere around 7 or 8 to
turn off greedy join (nice feature, kills memory) on queries that
involve more than 7 or 8 tables. From first look, your query wouldn't
have that, but the first system I was with utilized UNION ALL views
that included up to 6 objects below.
As a side note, there is a new tool on alphaworks that everyone should
check out. For those of us that don't have their favorite dba tool
handy always, IBM has created an integrated command line peformance
monitor. Bout as good as sliced bread...
http://alphaworks.ibm.com/tech/db2top
Raj - 17 Jan 2006 16:37 GMT
Thanks a lot for the reply ..
1. We have a lot of SMS temp space with mutli page file allocation is
turned on and DB2_PARALLEL_IO=* registry variable is set. the query
looks like this ..
select c1,c2,c3,c4,c5
from t1,t2,t3,t4
where c1=c2, c2=c3, c3= c1 || c2..................
order by t1.c,t2.c,t3.c
without the order by ,fetch first 100 rows takes 30 seconds , 1000 rows
takes 1 min .......
there were 300 sort overflows with the order by.
2. I tried it without the distinct i get the same error , also the
explain shows the cost as -190,000,000 ( a negative value??)
runstats on all the tables are up todate..
the query looks more like this
select distinct max ("c1") over() , c2, c2||c3||c4
from t1, t2,t3
where t1.c=t2.c, t1.c ='y', t2.c ='2005' ..................
will try the db2top tool on my dev box..Thanks
Eugene F - 17 Jan 2006 16:54 GMT
You also could try using DB2 Design Advisor db2advis to see what
indexes, MDC, or/and partitioning keys it recommends for this query
given your specific database evnvironment, sometimes it's helpful...
-Eugene
> Thanks a lot for the reply ..
>
[quoted text clipped - 26 lines]
>
> will try the db2top tool on my dev box..Thanks