IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Query optimisation


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
raak

Active User


Joined: 23 May 2006
Posts: 166
Location: chennai

PostPosted: Thu Jan 10, 2008 9:52 am
Reply with quote

Is there any way that this query can be optimised??


SELECT B.SOC_SEC_NUM || ';' ||
B.LAST_NAME || ';' ||
B.FIRST_NAME || ';' ||
IFNULL(CHAR (B.BRTH_BIRTH_D), ' ') || ';' ||
B.GROUP_NUMBER || ';' ||
C.GROUP_NAME
FROM EMP_TABLE B
JOIN
GRP_TABLE C
ON B.GROUP_NUMBER = C.GROUP_NUMBER
WHERE B.PART_KEY IN
(
SELECT DISTINCT A.PART_KEY
FROM PAY_TABLE A
WHERE A.PAY_D > CURRENT DATE - 6 MONTHS
)
AND
B.PAY_STATUS IN
('00', '01', '07')
Back to top
View user's profile Send private message
stodolas

Active Member


Joined: 13 Jun 2007
Posts: 632
Location: Wisconsin

PostPosted: Thu Jan 10, 2008 6:28 pm
Reply with quote

Probably. Have you run an explain on it?
Back to top
View user's profile Send private message
raak

Active User


Joined: 23 May 2006
Posts: 166
Location: chennai

PostPosted: Thu Jan 10, 2008 6:41 pm
Reply with quote

ya.. it was saying that DISTINCT should be avoided and Nonqualified function ( I think it is the IFNULL condition) should also be avoided.

but I am creating a report out of this and DISTINCT cannot be avoided since there is gud possibility of duplicates occuring in that field.


Any thoughts on this???
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts RC query -Time column CA Products 3
No new posts Dynamically pass table name to a sele... DB2 2
No new posts Query on edit primary command CLIST & REXX 5
No new posts Query on edit primary command CLIST & REXX 1
No new posts Issue with EXEC CICS QUERY SECURITY c... CICS 6
Search our Forums:

Back to Top