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

Using DFSORT to create a subset of a master file


IBM Mainframe Forums -> DFSORT/ICETOOL
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
r_rakesh_r

New User


Joined: 10 Aug 2006
Posts: 5

PostPosted: Thu Aug 10, 2006 9:23 pm
Reply with quote

Hi all,

Is there any way in DFSORT to create a "Subset file" of the Master file based on the records in another file (Condition).

For example,

Master File

100000A000000001
200000B000000002
300000C000000003
400000D000000004
500000E000000005
600000F000000006

Condition File (contains the list of values to be selected from master)

A
D
F

Expected Output

100000A000000001
400000D000000004
600000F000000006

Can anyone help me on this. Thanks a lot in advance.

Thanks & Regards,
Rakesh R
Back to top
View user's profile Send private message
Frank Yaeger

DFSORT Developer


Joined: 15 Feb 2005
Posts: 7129
Location: San Jose, CA

PostPosted: Thu Aug 10, 2006 11:07 pm
Reply with quote

Here's a DFSORT/ICETOOL job that will do what you asked for:

Code:

//S1 EXEC PGM=ICETOOL
//TOOLMSG DD SYSOUT=*
//DFSMSG DD SYSOUT=*
//CONDFILE DD DSN=...  Condition file
//T1 DD DSN=&&T1,UNIT=SYSDA,SPACE=(CYL,(5,5)),DISP=(,PASS)
//CON DD DSN=...       Master file
//    DD DSN=*.T1,VOL=REF=*.T1,DISP=(OLD,PASS)
//OUT DD DSN=...   output file
//TOOLIN DD *
COPY FROM(CONDFILE) TO(T1) USING(CTL1)
SELECT FROM(CON) TO(OUT) ON(7,1,CH) FIRSTDUP
/*
//CTL1CNTL DD *
  INREC OVERLAY=(7:1,1)
/*
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 -> DFSORT/ICETOOL

 


Similar Topics
Topic Forum Replies
No new posts How to split large record length file... DFSORT/ICETOOL 8
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
No new posts Modifying Date Format Using DFSORT DFSORT/ICETOOL 9
No new posts Access to non cataloged VSAM file JCL & VSAM 18
Search our Forums:

Back to Top