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

JCL for PS(I/P) -> table(Select query) -> PS(O/P)


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

Active User


Joined: 26 Nov 2008
Posts: 125
Location: chennai

PostPosted: Sat Jan 04, 2014 12:45 am
Reply with quote

I/P
1 - 8 char
9 - 12 char
13-16 char

Select query
select col1,col2, col3, col4 ...etc., from table a
where col1(1-8 i/p file) and col2(9-12 i/p file) and col3(13-16 i/p file)

o/p
The result of select query output should be written in output file

note : My input file can be blank and at that time JCL should write all the rows of the table(col1, col2, col3,col4...etc..)

Is this possible using JCL without writing a cobol pgm...
Back to top
View user's profile Send private message
Akatsukami

Global Moderator


Joined: 03 Oct 2009
Posts: 1788
Location: Bloomington, IL

PostPosted: Sat Jan 04, 2014 1:05 am
Reply with quote

Of course, you are jesting with us, as after more than five years you must know that JCL does nothing but establish environments and execute programs.

To fulfill your goal, I recommend SQL formatted by Rexx and executed by DSNTIAUL.
Back to top
View user's profile Send private message
daveporcelan

Active Member


Joined: 01 Dec 2006
Posts: 792
Location: Pennsylvania

PostPosted: Sat Jan 04, 2014 1:25 am
Reply with quote

The TS failed to tell us how many possible input records there could be.
Or the amount of data on the table.

The SQL may be:
IF ((col1 = '12345678' and col2 = '1234' and col3 = '1234') or
(col1 = '12345678' and col2 = '1234' and col3 = '1234') or
(col1 = '12345678' and col2 = '1234' and col3 = '1234') ......

An alternate approach....
Code:
STEP 1 - Sort to check if Input data exists
IF STEP1.RC=4   THEN DO (empty file)
   STEP2 DB2 Unload (all the data)
ELSE DO
   STEP3A DB2 Unload (all the data)
   STEP3B SORT JOINKEYS on Input file and DB2 Unload Data creating selected output file
END
Back to top
View user's profile Send private message
Akatsukami

Global Moderator


Joined: 03 Oct 2009
Posts: 1788
Location: Bloomington, IL

PostPosted: Sat Jan 04, 2014 1:41 am
Reply with quote

daveporcelan wrote:
An alternate approach....
Code:
STEP 1 - Sort to check if Input data exists
IF STEP1.RC=4   THEN DO (empty file)
   STEP2 DB2 Unload (all the data)
ELSE DO
   STEP3A DB2 Unload (all the data)
   STEP3B SORT JOINKEYS on Input file and DB2 Unload Data creating selected output file
END

A good idea; I hadn't thought of doing that way, but it's probably better than my recommendation.
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 Multiple table unload using INZUTILB DB2 2
No new posts Check data with Exception Table DB2 0
Search our Forums:

Back to Top