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

How to optimize the query to improve the performance


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

New User


Joined: 19 Sep 2006
Posts: 29

PostPosted: Thu Apr 16, 2009 12:40 pm
Reply with quote

For this condition, there are around 600000 records available in the table.
This query takes more than 1 hour to complete.
Can any please tell me , how to optimize the following query to improve its performance.

Code:
SELECT B.CUST_ID
        , A.ADR_HOME
     FROM PROD.TABLE1 A,
          PROD.TABLE2 B
    WHERE A.ADR_FMT = 'EMAIL'
      AND  A.ZIP5_CDE = ' '
       AND  B.ADDR_TYPE = 'EMAIL'
      AND A.ZIP5_CDE = B.ZIP5_CDE
      AND A.ADR_ID = B.ADR_ID
  WITH UR
  ;



Thanks
Sankar
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Thu Apr 16, 2009 2:51 pm
Reply with quote

Little or nothing exact can be offered without an EXPLAIN.

By the way db2 tables have ROWs not RECORDs.

There are plenty of Threads on Explain, use the search facility.
Back to top
View user's profile Send private message
ashimer

Active Member


Joined: 13 Feb 2004
Posts: 551
Location: Bangalore

PostPosted: Thu Apr 16, 2009 3:02 pm
Reply with quote

A.ZIP5_CDE is checked for spaces .. and you are using this column to join ??? Post the table indices .... o/p of EXPLAIN ....
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 exploiting Z16 performance PL/I & Assembler 2
No new posts Query on edit primary command CLIST & REXX 5
No new posts Query on edit primary command CLIST & REXX 1
Search our Forums:

Back to Top