While using SORT FILES =NONE,XSUM I am getting
error "ICE172A E XSUM IS NOT SUPPORTED - USE ICETOOL SELECT
IF APPROPRIATE"..I want to write duplicate records a a
serparte file..how i can do tht?
Answers were Sorted based on User's Feedback
Answer / anand
There are 2 kinds of sorts. one is SYNCSORT and other one is
DFSORT xsum facility only avails in DFSORT.you might have
syncsort thats why you are getting this error.
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / sumit agnihotri
The same thing is done with me but i can do this wid the
sort utility
//sysin dd *
sort fields = copy or (1,5,ch,a){if records r not sorted}
sum fields = none,xsum
/*
from this i can write duplicate records in a separate file ..
| Is This Answer Correct ? | 8 Yes | 5 No |
Answer / sivakumar sekharannair
XSUM is a unique feature of the SYNCSORT product ONLY.
Your mainframe may be using DFSORT thats why you r getting
this error
| Is This Answer Correct ? | 4 Yes | 1 No |
I am having one step in my jcl.in that step,i am calling one proc.In that proc,i have 10 steps.i want to call a particular step in that proc without writing any new jcl ike iebedit utility...
How to skip first step of a job? Can we use COND on the first step?
Can we change the LIMIT of GDG?
What is a Proc ? why do we go for a Proc ? What are the types of procs?Can we have nesting in Procs ?
01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable
Can we write same stepname for one or more steps in on job ?
One of My Job is running in production, which contains five steps?i want to pass the input to FIFTH step while running is it possible? if how?
I have 2 steps in my exec statement , in first step I am creating a gdg, and the output of this step is going into second step as a input, and this second step is abended , now how could i approach in this case.
How can you trap abends in the JCL?
I need exexution process for JCL programs
suppose i have 10 job steps and i want to execute only step 6.How to write?
jcl is like a complier....?