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 |
What is a COND parameter in JCL?
suppose i have job it contains 10 steps after exicution of job failuer at 3 and 7 th steps i want exicute step 3 and step 7 only how we specify condition ?
if we have a job consist of two steps and each step calling a proc having 10 steps each then how many steps are counted only 2 or 22(10+10+1+1)? can we have more than 255 steps in a single job?
read all error codes like SB07?
A job has 90 steps i want to execute only step7 and step15
how to eliminate the duplicates in sorting
Explain the function of job statement in jcl?
what are the types of abends that occur on job failure? And explain the possible causes of these
what are JCLLIB and STEPLIB in JCL?
Explain about REXX
Why we will create load module in PDS only, Why nt in PS?
i have records from 1 t0 100 . i need to open records from 10 to 18 and change the values in tht ? how can i do tht ?