how to create a member or sequential dataset through tso
command??
Answers were Sorted based on User's Feedback
Answer / ram.g
i have tried this ..but its creating a dataset(seq) with
invalid block size...how to mention blksize in that command
and
how to create pds memeber thru tso command..
| Is This Answer Correct ? | 5 Yes | 3 No |
Answer / bella
try this :
DSORG PS RECFM U BLKSIZE 1,944 LRECL 0
| Is This Answer Correct ? | 5 Yes | 3 No |
Answer / siddharth
The name that you want to give the new data set: CSYP760.NEW.DATA
The name of the model data set:CSYP760.MODEL.DATA
alloc da(new.data) like(model.data)
alloc da(new.data) dsorg(ps) space(2,0) tracks lrecl(80) + blksize(8000) recfm(f,b) new
| Is This Answer Correct ? | 0 Yes | 1 No |
How to point my proc to production dataset always though i keep jcllib order=development.dataset? Is it possible?
why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.
Hi, all suppose i have 5 steps (S1,S2,S3,S4,S5) what will happen if cond is true or false (which of the other steps get executed)? 1) //s3 exec pgm=abc,cond=(0,le) 2) //s3 exec pgm=abc,cond=(0,le,step2) 3) In the jobcord RESTART=step3,cond=(0,le) 4) can i code COND=TRUE in jobcard, if yes what will happen?
how to increase the space of a dataset in instream procedure.
I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?
What is dummy parameter in JCL??
i have a ps with two columns eno and ename , i need to copy eno column values in one ps and ename column values in one Ps ? is it possible through iebgener . how ? thx in advance
What does the keyword DCB mean and what are some of the keywords associated with it?
For what purpose steplib and joblib are used ?
What does SYSIN * indicate?
How to submit jcl through a cobol program?
HOW TO CONVERT VARIABLE BLOCK TO FIXED BLOCK ?