hi clear this doubt

In this Mainframe Forum - You can post your queries on JCL, OS/390 JCL, MVS JCL, z/OS JCL, JES2 & JES3

Moderators: Frank Yaeger, DikDude, Moderator Group

Post Reply
Nirmal

hi clear this doubt

Post by Nirmal » Fri May 12, 2006 2:18 pm

iam trying to create pds through jcl code

//DISK1 DD DSN=QNQD.INPUT1.PDS,DISP= (new,CATLG,DELETE),
// UNIT=SYSDA,
// SPACE=(TRK,(25,10),RLSE),DCB=(RECFM=FB,LRECL=80,BLKSIZE=800),
// DSORG=PO

i can create the pds successfuly here but i couldnot able to create member in the pds it is giving BLDL error...,
try to rectify this..,

User avatar
Frank Yaeger
Moderator
Posts: 812
Joined: Sat Feb 18, 2006 5:45 am
Location: San Jose, CA
Contact:

Post by Frank Yaeger » Fri May 12, 2006 8:43 pm

The problem is SPACE=(TRK,(25,10),RLSE),...

You didn't specify any directory blocks so you get 0. Without any directory blocks, you can't create any members. Change your SPACE parameter to:

SPACE=(TRK,(25,10,20),RLSE),...

That will give you 20 directly blocks so you can create members. 20 is just an example - you can use any number that's appropriate.
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

Post Reply

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



Other References
Mainframe Tools and others