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

Unload DB2 table with a SELECT query with UNION


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

New User


Joined: 07 Sep 2006
Posts: 2

PostPosted: Fri Sep 15, 2006 5:21 pm
Reply with quote

How can I unload data from more than 1 DB2 table.
The selection creiterion is given as a SELECT query with union in the UNLOAD parameters as :

UNLOAD
UNLOADDN(SYSRE001)
SORTDEVT SYSDA
SELECT a, b,c
From table1
UNION
SELECT d,b,c
from table2,table1
where table1.b=table2.d and
table1.a=substr(d,1,3)
group by table1.a,b,c,d


It errors as "UNEXPECTED TOKEN "UNION' ENCOUNTERED'

NOTE: d is of 8 characters and a is of 3 characters

Ex: table1 -->
a b c
001 ab1 xyz
001 ab2 abc

table2: -->
d
ab100035
ab100050

Output should be like that :


a b c

001 ab1 xyz
001 ab100035 xyz
001 ab100050 xyz
001 ab2 abc
Back to top
View user's profile Send private message
MFRASHEED

Active User


Joined: 14 Jun 2005
Posts: 186
Location: USA

PostPosted: Fri Sep 15, 2006 8:17 pm
Reply with quote

Try this setup and see if this works for you:


//STP0100 EXEC PGM=IKJEFT01,DYNAMNBR=20
//SYSREC00 DD DSN=Give dataset name for output raw data,
// DISP=(,CATLG,DELETE),
// UNIT=SYSDA,
// SPACE=(CYL,(1,99),RLSE),DCB=(MODEL.DSCB1,BLKSIZE=0)
//SYSPUNCH DD DUMMY
//SYSTSPRT DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SYSTSIN DD *
DSN SYSTEM(DBxx)
RUN PROGRAM(DSNTIAUL) PLAN(DSNTIAUL) PARMS('SQL')
END
/*
//SYSIN DD *
SELECT statement
UNION
SELECT statement
;
/*
//*
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 Load new table with Old unload - DB2 DB2 6
No new posts Pulling a fixed number of records fro... DB2 2
No new posts RC query -Time column CA Products 3
No new posts Remote Unload of CLOB Columns DB2 6
No new posts Multiple table unload using INZUTILB DB2 2
Search our Forums:

Back to Top