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

about ps file


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

New User


Joined: 05 May 2005
Posts: 50

PostPosted: Sat Jun 04, 2005 6:59 am
Reply with quote

hi,
can anybody please tell me that how copy data from one ps to another ps,
leaving one particular field.for example my ps file contains the following data,

111 aaa 2000 1) what utility should i use for this?

222 bbb 3000 2)give me small example prog.

333 ccc 4000

444 ddd 5000


i want to copy this data in one ps to another ps,leaving any one the field.

ex:may be 111 (or) 222 etc (or) aaa (or) bbb etc (or) 2000 (or) 4000
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: Sat Jun 04, 2005 8:10 pm
Reply with quote

It's not clear to me what you want to do. What does "leaving one particular field" and "leaving any one the field" mean exactly? Are you trying to find a particular value, like aaa, in the file and just copy the record with that value to the output file? If so, you can do that with the following DFSORT job. I've assumed your input file has RECFM=FB and LRECL=80, but the job can be changed appropriately for other attributes.

Code:

//S1 EXEC PGM=ICEMAN
//SYSOUT DD SYSOUT=*
//SYMNAMES DD *
Target,'aaa'
/*
//SORTIN DD DSN=...  input file (FB/80)
//SORTOUT DD DSN=...  output file (FB/80)
//SYSIN DD *
  OPTION COPY
   INCLUDE COND=(1,80,SS,EQ,Target)
/*


The output from your input example would be:

111 aaa 2000

If that's not what you want, then you need to explain in more detail what you do want.
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 FTP VB File from Mainframe retaining ... JCL & VSAM 1
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
Search our Forums:

Back to Top