Radoslaw Skorupka wrote on 10/31/2006 06:58:52 AM: > 1. I tried to use polish locale: > OPTION LOCALE=PL_PL > SORT FIELDS=(14,9,CH,A) > > However it works as without the option. In fact I also tried > non-existent locale i.e. PL_WE - it is also accepted and ignored. > My goal is to easily set polish collating sequence in my sort jobs.
OPTION LOCALE is processed only if it is passed in an extended parameter list or in DFSPARM. Sounds like you're trying to pass it in SYSIN in which case it will be ignored. Try: //DFSPARM DD * OPTION LOCALE=PL_PL SORT FIELDS=(14,9,CH,A) When I passed PL_PL in DFSPARM, the LOCALE was used as indicated by this message: ICE722I 0 ACTIVE LOCALE PL_PL When I passed PL_WE in DFSPARM, I got this error message: ICE714A 0 LOAD FAILED FOR ACTIVE LOCALE PL_WE > > 2. ICEGENER and 237 abend. > I'm looking for some way to read a dataset from tape with corrupted EOF > labels - incorrect number of blocks. Maybe some parameter, like SPANINC? SPANINC only applies to spanned records. DFSORT's E18 and E38 exits have some error handling capabilities (SYNAD, EROPT), but I don't know if they apply to your situation. Frank Yaeger - DFSORT Team (IBM) - [EMAIL PROTECTED] Specialties: PARSE, JFY, SQZ, ICETOOL, IFTHEN, OVERLAY, Symbols, Migration => DFSORT/MVS is on the Web at http://www.ibm.com/storage/dfsort/ ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

