GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Mainframe  >  JCL

 Print  |  
Question:  How to create a PDS file using JCL



October 10, 2009 05:44:28 #8
 venkat65318   Member Since: September 2009    Total Comments: 4 

RE: How to create a PDS file using JCL
 
using IEFBR14 we can create pds with jcl.
//TZZZ84R JOB NOTIFY=&SYSUID,MSGCLASS=X
//STEP01 EXEC PGM=IEFBR14
//DD1 DD DSN=TKOL084.DEMO,DISP=(NEW,CATLG,DELETE),
// DCB=(RECFM=FB,LRECL=80,BLKSIZE=80,DSORG=PO),
// SPACE=(TRK,(10,10,3),RLSE),
// UNIT=SYSDA
     

 

Back To Question