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 can you check if a file is empty using jcl?
Say I have a file with 12 records. Each record has the name of the month. I have to append data in these 12 records into 1 record. How is it possible?
i have 1000 records in input file and i want to sort it and the first 200 records to be placed in output file. how to do that??
if my GDG limit has been kept as 50 and if am trying to put 60 records.what would happen. will there be any abend for this scenario
how to create gdg with out using idcams utility
Explain how can return codes be tested before execution of a job step?
Can we write same stepname for one or more steps in on job ?
How to do automated restart when a job abend?
how to convert fb to vb in jcl ?
i) Difference between ps, esds, ii) Difference between lrecl, blksize among PS, PDS issues? i.e in jcl at dcb
How do you overcome this limitation ?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?