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 to compare two datasets without using superce because output is limited to 133 bytes
how to identify a vasam dataset by seeing in 3.4(browse)
Max generations in GDG??
What statement marks the end of an in-stream or catalogued procedure?
by using cond parameter maximum 8 cond can be coded in single cond means ?explain
How can we see data in TEMPARARY DATA SET in JCL ?
can we maintain 2 generations with different Lengths in Same GDG ?
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 is a null indicator in db2?
What are the basic JCL Statements for a Job?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
Suppose i have 2 steps in my pgm. Step1- creates a file, Step2 - generates report from file in step1, What changes have to be made in Step2, so that if the file in Step1 is empty Step2 should not be executed? No changes to be made to Step1.