IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

CHANGE option in OUTREC - NOMATCH always a must?


IBM Mainframe Forums -> DFSORT/ICETOOL
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
avelayudhan

New User


Joined: 30 Nov 2005
Posts: 26

PostPosted: Fri Dec 02, 2005 11:35 pm
Reply with quote

When CHANGE option is used in OUTREC, a NOMATCH always need to be specified? What if we need to CHANGE only few values and want to keep the remaining values same?
Back to top
View user's profile Send private message
Frank Yaeger

DFSORT Developer


Joined: 15 Feb 2005
Posts: 7129
Location: San Jose, CA

PostPosted: Sat Dec 03, 2005 12:33 am
Reply with quote

If you don't specify NOMATCH and you don't get a match, DFSORT will terminate. Not specifying NOMATCH is NOT the right strategy for changing only a few values and keeping the remaining values the same. You should use NOMATCH in that case. For example, if you want to change 'AB' and 'CD' to 'XY' in positions 11-12, but not change anything else, you would use:

Code:

  11,2,CHANGE=(2,C'AB',C'XY',C'CD',C'XY'),NOMATCH=(11,2)


That puts the original value into 11-12 when you don't get a match.

Alternatively, you can use DFSORT's IFTHEN feaure, e.g.

Code:

   INREC IFTHEN=(WHEN=(1,2,EQ,CH,C'AB',OR,1,2,CH,EQ,C'CD'),
      OVERLAY=(11:C'XY'))


That will change 'AB' or 'CD' in 11-12 to 'XY' without changing anything else.

You'll need z/OS DFSORT V1R5 PTF UQ95214 or DFSORT R14 PTF UQ95213 (Dec, 2004) in order to use DFSORT's IFTHEN and OVERLAY functions. Only DFSORT has these functions, so if you don't have DFSORT, you won't be able to use them. If you do have DFSORT, but you don't have the Dec, 2004 PTF, ask your System Programmer to install it (it's free). For complete details on all of the new DFSORT and ICETOOL functions available with the Dec, 2004 PTF, see:

Use [URL] BBCode for External Links
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DFSORT/ICETOOL

 


Similar Topics
Topic Forum Replies
No new posts SCOPE PENDING option -check data DB2 2
No new posts OUTFIL with SAVE option DFSORT/ICETOOL 7
No new posts CICS vs LE: STORAGE option CICS 0
No new posts 3270 personal communications. Can't c... TSO/ISPF 2
No new posts SELECT from data change table DB2 5
Search our Forums:

Back to Top