View previous topic :: View next topic |
Author |
Message |
THRIVIKRAM Beginner
Joined: 03 Oct 2005 Posts: 70 Topics: 34
|
Posted: Thu Jun 29, 2006 1:00 am Post subject: Info on BLOCKSET |
|
|
Hello,
When running a sort step, I got the below error message:
J BLOCKSET IS REQUIRED FOR WORK DATA SETS ON VOLUMES WITH MORE THAN 17476 CYLINDERS.
Then I ran that sort step from my personal ID,instead of using production files.It went fine.
But I dont know what the problem was, I mean i did not get by BLOCKSET REQUIRED.
can anyone throw some light on it.
Thanks,
Thrivikram. |
|
Back to top |
|
 |
nevilh Beginner
Joined: 11 Aug 2004 Posts: 115 Topics: 0
|
Posted: Thu Jun 29, 2006 3:33 am Post subject: |
|
|
You will only get the message if a work dataset is allocated on a 3390 model 27. So depending on SMS routines, disk pools etc will depend on if the problem occurs or not |
|
Back to top |
|
 |
Frank Yaeger Sort Forum Moderator

Joined: 02 Dec 2002 Posts: 1618 Topics: 31 Location: San Jose
|
Posted: Thu Jun 29, 2006 11:33 am Post subject: |
|
|
Blockset is DFSORT's primary and most efficient technique and will be used if at all possible. If Blockset cannot be used for some reason, then a secondary and less efficient technique will be used. Message ICE800I will tell you why Blockset couldn't be used and you should try to remove the condition preventing the use of Blockset if at all posssible.
Here's a link to the Explanation for message ICE285A (the message you received) in "z/OS DFSORT Messages, Codes and Diagnosis Guide" which explains the reason for the message and what you should do about it:
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/ICE1CM10/2.2.239?SHELF=&DT=20050119125222&CASE= _________________ Frank Yaeger - DFSORT Development Team (IBM)
Specialties: JOINKEYS, FINDREP, WHEN=GROUP, ICETOOL, Symbols, Migration
DFSORT is on the Web at:
www.ibm.com/storage/dfsort |
|
Back to top |
|
 |
THRIVIKRAM Beginner
Joined: 03 Oct 2005 Posts: 70 Topics: 34
|
Posted: Tue Jul 04, 2006 11:56 pm Post subject: |
|
|
Hello ALL,
Thanks for the response.
I have an input file being sorted out to an out put file.
Code: |
//STEPNM EXEC PGM=SORT,REGION=6M,PARM='SIZE=MAX'
//SORTIN DD=input file
//SORTOUT DD=output file
//SYSIN DD *
SORT FIELDS=(1,46,A),FORMAT=PD
/*
|
But the error Iam getting is ABENDU0285 and sysout displayed was
Code: |
"BLOCKSET TECHNIQUE COULD NOT BE USED - REASON CODE IS 01"
|
Iam suggested to change the SYSIN fields as SORT FIELDS=(1,2,PD,A,3,44,CH,A), mentioning that only first two bits are Packed Decimal.
Then the step ran fine.
Then,I tried giving SORT FIELDS=(1,46,CH,A) and even then the step ran fine.
My Doubts:
1)So will it not make any difference if I dont mention the format as PD.
2)If so what is the use of explicitly mentioning the FORMAT.
Please guide me as this output file is being loaded into a Production table.
Thanks,
Thrivikram. |
|
Back to top |
|
 |
Frank Yaeger Sort Forum Moderator

Joined: 02 Dec 2002 Posts: 1618 Topics: 31 Location: San Jose
|
Posted: Wed Jul 05, 2006 9:53 am Post subject: |
|
|
I don't think the SORT statement was the cause of this situation. Something else is going on. But I'd need to see all of the //SYSOUT messages for the bad run to tell you what happened. Do you still have the messages for that run? If so, post them here. _________________ Frank Yaeger - DFSORT Development Team (IBM)
Specialties: JOINKEYS, FINDREP, WHEN=GROUP, ICETOOL, Symbols, Migration
DFSORT is on the Web at:
www.ibm.com/storage/dfsort |
|
Back to top |
|
 |
nevilh Beginner
Joined: 11 Aug 2004 Posts: 115 Topics: 0
|
Posted: Wed Jul 05, 2006 10:04 am Post subject: |
|
|
Have you tried adding a dd card for SORTDIAG and seeing what the ICE800I message says. |
|
Back to top |
|
 |
Bill Dennis Advanced

Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Wed Jul 05, 2006 11:07 am Post subject: |
|
|
Your first example showed sorting a 46 byte packed-decimal field! The sort probably couldn't accept that. Are only the first 2 bytes actually packed?
The FORMAT parameter is helpful when all the sort fields are the same format. _________________ Regards,
Bill Dennis
Disclaimer: My comments on this foorum are my own and do not represent the opinions or suggestions of any other person or business entity. |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Wed Jul 05, 2006 11:16 am Post subject: |
|
|
Bill Dennis wrote: | Your first example showed sorting a 46 byte packed-decimal field! The sort probably couldn't accept that.[/b] |
Bill Dennis,
Sort accepts a 46 byte packed decimal field.
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
 |
Frank Yaeger Sort Forum Moderator

Joined: 02 Dec 2002 Posts: 1618 Topics: 31 Location: San Jose
|
Posted: Wed Jul 05, 2006 2:20 pm Post subject: |
|
|
Hmmm... now that I think about it, you need the April, 2006 DFSORT PTF to sort on a 46 byte PD field. Without the PTF, the limit is 32 bytes. With the PTF, the limit is 256 bytes. So that may explain what Thrivikram is seeing.
Thrivikram,
Ask your System Programmer to install z/OS DFSORT PTF UK90007 or DFSORT R14 PTF UK90006 (April, 2006) so you can sort on a 46-byte PD field. _________________ Frank Yaeger - DFSORT Development Team (IBM)
Specialties: JOINKEYS, FINDREP, WHEN=GROUP, ICETOOL, Symbols, Migration
DFSORT is on the Web at:
www.ibm.com/storage/dfsort |
|
Back to top |
|
 |
|
|