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 |
Explain about LMINIT - generate a data ID for a data set
How many positional parameters are there in job statement?
How is a GDG base created?
Explain how can return codes be tested before execution of a job step?
//step#3 exec pgm = hkbc762 what is wrong with the syntax?
How does jcl act on code(if you take a cobol program)?
Can we have a JOBSTEP without any EXEC ?
what are the various stages of job processing?
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
Write a JCL by using the below requirement: File1 =1, File2 =11 and output needs to come as File3 =111?
I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one
How To get the last record in VSAM file in cluster? and How can u get the ksds file records into ur cobol program ? Pls tell me about these two questions.