how to compress the data set
Answers were Sorted based on User's Feedback
Answer / srinivasa rao
You can type Z in command line after opening dataset.
| Is This Answer Correct ? | 26 Yes | 2 No |
Answer / vinay sonar
By using IEBCOPY
Syntax is
DD1 DD DSN=PMAP391.NEW.PS,DISP=SHR
DD2 DD DSN=PMAP391.NEW.PS,DISP=SHR
OR
Type Z infront of dataset name in catlog
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / srinivasa rao
//SYSIN DD *
COPY INDD= DATASET NAME,OUTDD=SAME DATASET NAME AS IN
INDD
*
| Is This Answer Correct ? | 7 Yes | 5 No |
Answer / sravani
BY USING IEBCOPY
COPY INPUT=DD1,OUTPUT=DD1
LIKE THIS WE CAN COMPRESS
| Is This Answer Correct ? | 1 Yes | 1 No |
How can i execute 5th step without executing first 4 steps?
What does a disposition of (MOD,DELETE,DELETE) mean ?
Give the syntax of job specifying jcl statement.
Can we create VSAM file by using IEBGENER?
what is the function of iebcompr?....is it compare record length or characteristics of a dataset?...pls explain with examples.......
What is COND=ONLY ?
Can I send output of job to my remote device careerride123?
What is Cataloged Procedures?
what modification we need to do in jcl if we use sort in cobol? I mean whether we need to include temporary file used for sorting in assign statement?
How to find the UNIT and VOLUME of a (a) KEPT (b) UNCATALOGED and (c) CATALOGED dataset - using (i) JCL and using (ii) ISPF ?
In JCL I have 5 steps,I need to execute 1st,2nd and 5th steps only,can any one answer me please?
How different is the JCL executing a COBOL program? 1) if the program is using VB file as input. 2) if the program is using FB file as input.