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 |
Can we able insert data into a PS file Using IEBUPDTE utility??? If Yes can anyone describe it please..
if you have big pgm. during compilation is abends with (soc7)how do you know which line has soc 7 error.
I have an job having three job steps.Suppose i want to call a pgm in step2 and aproc in step3.How to write the code?
what is the function of spool command?
What is the exact difference between PRTY and DPRTY
what JCL Procedures?
How to identify where file is empty or not? How many ways are there to identifying?
i have two flat files.i want to select one record from that file by using jcl.for example file1 contains emp no,name,joining date. file2 has same details.emp no is primary key. i will give empno.that emp details send to outfile.please let me know if any one knows it.give sample code.
What are isolation levels? Where do we need to specify them in compiling JCL?
FOR a GDG, the book by 'SABA ZAMEER' says 'We can NOT ALTER the LIMIT parameter after it is defined'. (p-211). But many persons have written that it can be changed, which one is true ?
how to do automated restart when a job abends?
Why 16 is used in calculating the DPRTY ? as, DPRTY = (num1, num2), THEN, DPRTY = 16* num1 + num2