IN DFSORT sum fields=none is usec to remove duplicates.how
to write the duplicates in another dataset?

Answers were Sorted based on User's Feedback



IN DFSORT sum fields=none is usec to remove duplicates.how to write the duplicates in another datas..

Answer / shivani

using XSUM

Is This Answer Correct ?    10 Yes 1 No

IN DFSORT sum fields=none is usec to remove duplicates.how to write the duplicates in another datas..

Answer / madhu s reddy

.
.
//SORTXSUM DD DSN=UID.DUPS,DISP=SHR
//SYSIN DD *
SORT FIELDS = (10,5,CH,A)
SUM FIELDS = NONE,XSUM
/*
.
.

Is This Answer Correct ?    11 Yes 2 No

Post New Answer

More JCL Interview Questions

What is the function of //jcllib statement?

0 Answers  


How to skip first step of a job? Can we use COND on the first step?

3 Answers   iNautix,


I have four steps in jcl they are STEP1,STEP2,STEP3 and STEP4. Can it possible to run the reverse order like step4 first then step3,step2,step1?

4 Answers   Broadridge, HCL,


When a dataset is UNCATALOGED in a JOBSTEP, how to get its UNIT and VOL in JCL to refer in subsequent steps ?

1 Answers   IBM,


if we give TIME=0 how many sec that job/step

14 Answers  






how can the same proc be re-used and called by many jobs?

0 Answers   IBM,


oza017.myorg.emp has 100 records ,oza018.myorg.staff has 200 records but 50 are the common records in both files copy all the common records into oza017.myorg.xyz dataset

3 Answers   Cognizant,


What are the common jcl syntax errors you get? This is not abends?

1 Answers  


Do we need to code DCB parameters when using DISP position as MOD?

1 Answers   Accenture,


How to pass the parameter in parm using linkage section ? (syntax)?

0 Answers   Infosys,


Explain the purpose of the dd keylen parameter?

0 Answers  


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

8 Answers  


Categories