resove me this!!!
how to concatenate the datasets
how to concatenate the datasets
Moderators: Frank Yaeger, DikDude, Moderator Group
- Frank Yaeger
- Moderator
- Posts: 812
- Joined: Sat Feb 18, 2006 5:45 am
- Location: San Jose, CA
- Contact:
It's not clear what exactly you're asking. If you want to concatenate input data sets for some program, you'd use DD statements like this:
If you want to do something else, explain clearly what it is you want to do.
Code: Select all
//ddname DD DSN=... file1
// DD DSN=... file2
// DD DSN=... file3
...
Frank Yaeger - DFSORT Development Team (IBM) - yaeger@us.ibm.com
Specialties: JOINKEYS, FINDREP, WHEN=GROUP, ICETOOL, Symbols, Migration
=> DFSORT/MVS is on the Web at http://www.ibm.com/storage/dfsort
Specialties: JOINKEYS, FINDREP, WHEN=GROUP, ICETOOL, Symbols, Migration
=> DFSORT/MVS is on the Web at http://www.ibm.com/storage/dfsort
-
- Member
- Posts: 10
- Joined: Thu Jul 21, 2011 1:34 pm
concatenate of data sets
to concatenate PS(physical sequential) data sets we can use the ibm utility
IEBGENER program
and specify the files in this way
//JOB1 JOB .....................
//STEP1 EXEC PGM=IEBGENER
//SYSUT1 DD DSN="FILE1",DISP=SHR,
DD DSN="FILE2",DISP=SHR,
DD DSN="FILE3",DISP=SHR
//SYSUT2 DD DSN="NEWFILE",DISP=(NEW,CATLG,DELETE)
DCB=(...............),
SPACE=(...........)
where record length should be file1(rec len)> file2(rec len)> file3(reclen)
the result is stored in output file NEW FILE
we cannot concatenate PDS(partitioned data set) files.as they have members
any query :mail me at ramanamurthyt87@gmail.com
IEBGENER program
and specify the files in this way
//JOB1 JOB .....................
//STEP1 EXEC PGM=IEBGENER
//SYSUT1 DD DSN="FILE1",DISP=SHR,
DD DSN="FILE2",DISP=SHR,
DD DSN="FILE3",DISP=SHR
//SYSUT2 DD DSN="NEWFILE",DISP=(NEW,CATLG,DELETE)
DCB=(...............),
SPACE=(...........)
where record length should be file1(rec len)> file2(rec len)> file3(reclen)
the result is stored in output file NEW FILE
we cannot concatenate PDS(partitioned data set) files.as they have members
any query :mail me at ramanamurthyt87@gmail.com
FREE TUTORIALS
Tutorials
Free tutorials from mainframegurukul
- JCL Tutorial
Covers all important JCL concepts. - Cobol Tutorial
This tutorials covers all Cobol Topics from STRING to COMP-3. - DB2 Tutorial
DB2 Tutorial focuses on DB2 COBOL Programming. - SORT Tutorial
This Tutorial covers all important aspects of DFSORT with examples - CICS Tutorial
This CICS tutorial covers CICS concepts and CICS Basics, CICS COBOL Programming.
Interview
Mainframe Interview questions
- Cobol Interview Questions
50+ Interview Questions - JCL Interview Questions
50+ Interview Questions - DB2 Interview Questions
100+ Interview Questions - CICS Interview Questions
70+ Interview Questions - VSAM Interview Questions
27 Interview Questions
Other References
Mainframe Tools and others
- XPEDITER Reference
Explains how we can debug a program - FILEAID Reference
Explains how to browse , edit and delete datasets - Change Man Reference
Quick Start tutorial on Changeman - Abend Reference
Important Abend codes explained - FaceBook Page
MainframeGurukul FaceBook Page - LinkedIn Page
MainframeGurkul Linkedin Page