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

SORT Job is failing with U0016with mesage 16MEG Line


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
babish08

New User


Joined: 16 Oct 2013
Posts: 3
Location: USA

PostPosted: Thu Oct 17, 2013 12:26 am
Reply with quote

I am geting an error mesage 22,384K BYTES OF VIRTUAL STORAGE AVAILABLE ABOVE THE 16MEG LINE, for my SORT job. I tried with many SORT WORK file to resolve this issue but its not resolved.

Code:
WER276B  SYSDIAG= 14237651, 17813508, 17813508, 4958625                       
WER164B  23,412K BYTES OF VIRTUAL STORAGE AVAILABLE, MAX REQUESTED,           
WER164B     0 BYTES RESERVE REQUESTED, 23,316K BYTES USED                     
WER146B  32K BYTES OF EMERGENCY SPACE ALLOCATED                               
WER108I  SORTIN   : RECFM=FB   ; LRECL=  1000; BLKSIZE= 27000                 
WER073I  SORTIN   : DSNAME=HSCP.NONX.HSC215NW.MEM.LESS00.WRT0.G0548V00  (FIRST
WER110I  SORTOUT  : RECFM=FB   ; LRECL=  1000; BLKSIZE= 10000                 
WER074I  SORTOUT  : DSNAME=USER.NONX.HSC215NW.HSC24MNC.SORTOUT.G0002V00       
WER410B  22,384K BYTES OF VIRTUAL STORAGE AVAILABLE ABOVE THE 16MEG LINE,     
WER410B     0 BYTES RESERVE REQUESTED, 22,384K BYTES USED                     
WER036B  G=20882,B=10,BIAS=72                                                 
WER162B  0 PREALLOCATED SORTWORK TRACKS, 240,000 DYNAMICALLY ALLOCATED,       

SYSIN CARD USED IS :

Code:
SYSIN :                                         
 OMIT COND=(1,6,BI,EQ,X'404040404040',OR,       
            1,6,BI,EQ,X'FFFFFFFFFFFF',OR,       
            1,9,CH,EQ,C'999999999')             
  SORT FIELDS=(020,09,CH,A,                     
               029,02,ZD,A),  EQUALS
SUM FIELDS=NONE


Code'd
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Thu Oct 17, 2013 12:38 am
Reply with quote

Hello and welcome to the forum,

You need to post the JCL you submitted as well as the JES output for the problem run.

I may be slow this afternoon, but i see no error in what you posted. . .
Back to top
View user's profile Send private message
Akatsukami

Global Moderator


Joined: 03 Oct 2009
Posts: 1788
Location: Bloomington, IL

PostPosted: Thu Oct 17, 2013 1:07 am
Reply with quote

The WER410B message has nothing to do with this or any other error, and in fact appears to be from a non-abending run. The error is the extraneous space before EQUALS, and should have generated a WER268A message icon_confused.gif
Back to top
View user's profile Send private message
Terry Heinze

JCL Moderator


Joined: 14 Jul 2008
Posts: 1249
Location: Richfield, MN, USA

PostPosted: Thu Oct 17, 2013 1:37 am
Reply with quote

The extraneous space before EQUALS would have been more easily spotted if Code tags had been used. Please use them next time, babish08.
Code:
SYSIN :
OMIT COND=(1,6,BI,EQ,X'404040404040',OR,
1,6,BI,EQ,X'FFFFFFFFFFFF',OR,
1,9,CH,EQ,C'999999999')
SORT FIELDS=(020,09,CH,A,
029,02,ZD,A), EQUALS
SUM FIELDS=NONE
Back to top
View user's profile Send private message
babish08

New User


Joined: 16 Oct 2013
Posts: 3
Location: USA

PostPosted: Thu Oct 17, 2013 2:00 am
Reply with quote

This is the JCL that I used

TSTSORT1 JOB (00052),'BABISH08',REGION=0M,CLASS=A,MSGCLASS=A,
NOTIFY=&SYSUID
TEST01 EXEC PGM=SORT
SYSOUT DD SYSOUT=*
SORTIN DD DSN=TEST.NONX.TEST2NW.MEM.LESS00.WRT0(0),DISP=SHR
DD DSN=TEST.NONX.TEST2NW.MEM.LESS01.WRT0(0),DISP=SHR
DD DSN=TEST.NONX.TEST2NW.MEM.LESS02.WRT0(0),DISP=SHR
DD DSN=TEST.NONX.TEST2NW.MEM.LESS03.WRT0(0),DISP=SHR
DD DSN=TEST.NONX.TEST2NW.MEM.LESS04.WRT0(0),DISP=SHR
DD DSN=TEST.NONX.TEST2NW.MEM.LESS05.WRT0(0),DISP=SHR
DD DSN=TEST.NONX.TEST2NW.MEM.LESS06.WRT0(0),DISP=SHR
DD DSN=TEST.NONX.TEST2NW.MEM.LESS07.WRT0(0),DISP=SHR
DD DSN=TEST.NONX.TEST2NW.MEM.LESS08.WRT0(0),DISP=SHR
SORTOUT DD DSN=USER.NONX.TEST2NW.TEST24MNC.SORTOUT(+1),
DISP=(,CATLG,DELETE),
UNIT=TESTDA,VOL=(,,,99),
SPACE=(CYL,(1500,1000),RLSE)
*
WORK01 DD UNIT=SYSDA,SPACE=(CYL,(150,150))
WORK02 DD UNIT=SYSDA,SPACE=(CYL,(150,150))
WORK03 DD UNIT=SYSDA,SPACE=(CYL,(150,150))
WORK04 DD UNIT=SYSDA,SPACE=(CYL,(150,150))
WORK05 DD UNIT=SYSDA,SPACE=(CYL,(150,150))
WORK06 DD UNIT=SYSDA,SPACE=(CYL,(150,150))
WORK07 DD UNIT=SYSDA,SPACE=(CYL,(150,150))
WORK08 DD UNIT=SYSDA,SPACE=(CYL,(150,150))
WORK09 DD UNIT=SYSDA,SPACE=(CYL,(150,150))
WORK10 DD UNIT=SYSDA,SPACE=(CYL,(150,150))
WORK11 DD UNIT=SYSDA,SPACE=(CYL,(150,150))
WORK12 DD UNIT=SYSDA,SPACE=(CYL,(150,150))
*
SYSIN is already mention in my prior email and there is no space before the EQUALS command (that was a typo).

SYSOUT DISPLAY :

WER276B SYSDIAG= 14237651, 17813508, 17813508, 4958625
WER164B 23,412K BYTES OF VIRTUAL STORAGE AVAILABLE, MAX REQUESTED,
WER164B 0 BYTES RESERVE REQUESTED, 23,316K BYTES USED
WER146B 32K BYTES OF EMERGENCY SPACE ALLOCATED
WER108I SORTIN : RECFM=FB ; LRECL= 1000; BLKSIZE= 27000
WER073I SORTIN : DSNAME=HSCP.NONX.HSC215NW.MEM.LESS00.WRT0.G0548V00 (FIRST
WER110I SORTOUT : RECFM=FB ; LRECL= 1000; BLKSIZE= 10000
WER074I SORTOUT : DSNAME=USER.NONX.HSC215NW.HSC24MNC.SORTOUT.G0002V00
WER410B 22,384K BYTES OF VIRTUAL STORAGE AVAILABLE ABOVE THE 16MEG LINE,
WER410B 0 BYTES RESERVE REQUESTED, 22,384K BYTES USED
WER036B G=20882,B=10,BIAS=72
WER162B 0 PREALLOCATED SORTWORK TRACKS, 240,000 DYNAMICALLY ALLOCATED,
WER162B 1,090,860 ACQUIRED IN 467 SECONDARY EXTENTS, 0 RELEASED, TOTAL OF 1
WER046A SORT CAPACITY EXCEEDED
WER055I INSERT 0, DELETE 517806
WER493I ZIIP PROCESSOR USED
WER211B SYNCSMF CALLED BY SYNCSORT; RC=0000
WER449I SYNCSORT GLOBAL DSM SUBSYSTEM ACTIVE
WER066A APROX RCD CNT 65246207


THNKsa in advance for your help!
Back to top
View user's profile Send private message
Akatsukami

Global Moderator


Joined: 03 Oct 2009
Posts: 1788
Location: Bloomington, IL

PostPosted: Thu Oct 17, 2013 2:16 am
Reply with quote

babish08 wrote:
WER046A SORT CAPACITY EXCEEDED
:
:
WER066A APROX RCD CNT 65246207

There's your problem, Babish-kun. Scrap (what I assume are) the SORTWKnn statements and add
Code:
OPTION DYNALLOC,FILSZ=E70000000

in your control deck.
Back to top
View user's profile Send private message
babish08

New User


Joined: 16 Oct 2013
Posts: 3
Location: USA

PostPosted: Thu Oct 17, 2013 3:29 am
Reply with quote

Thanks much ! it worked !!
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 -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts Need to set RC4 through JCL SORT DFSORT/ICETOOL 5
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts Write line by line from two files DFSORT/ICETOOL 7
No new posts JCL sort card - get first day and las... JCL & VSAM 9
No new posts Sort First/last record of a subset th... DFSORT/ICETOOL 7
Search our Forums:

Back to Top