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 |
If job is submitted with typerun = hold then how can we submit the same job?
How do you pass parameters to the program as the job is being executed ?
can we give instream data in procedure
what is the meaning of keyword in jcl?what is is opposite?
How to get cursor position from system in CICS environment ?
what is use of dcb parameter in dd statement?
What is the function of dd name parameter with a 2 part structure; audit.report?
Explain how can the attributes of one sms dataset be copied to another dataset?
I have 20 steps in a job... step01, 02....step17...step20. For some reason I want to execute step17 only if the return code for all the previous steps are less than or equal to 4. otherwise if return code for any of the previous 16 steps is greater than 4, then step17 should be bypassed. How do I do that ?? how and in which step should i formulate COND parameter
We are using 2 files , file one has data, file two is empty.Using jcl how can we find the other file is empty?
i have 10 steps in jcl program but i have to exicute only 2,4,6,8th and 10th ?how it's possible?
Can we write same stepname for one or more steps in on job ?