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 |
When concatenating two PDS can any one PDS can have empty dataset i.e without any value(Dummy).
What is meant by S0C7 system abend code?
Is automatic restart possible in jcl?
How we can code in a jcl to execute a job in a particular time and date without using any job shudular?. (Eg) i want to execute a particular job at 8 am on 01/01/2010.
What do you understand by the term job time – out and how can you overcome that?
I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it possible to control through JOB card?
What does a disposition of (NEW,CATLG,DELETE) mean?
Define concatenating?
Why do you use a control card?
Using DELETE what type of file can you delete? a)SEQUENTIAL FILE B)INDEXED FILE C) D) Some options were there..i cant remember
how to compare two datasets without using superce because output is limited to 133 bytes
In how ways you can pass the data from Jcl to cobol ?