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

SYNCSORT - B message clarification needed


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

New User


Joined: 27 Apr 2009
Posts: 26
Location: addison

PostPosted: Wed Dec 16, 2009 1:01 pm
Reply with quote

Hi,

When i use
Code:
$ORTPARM : BMSG,VSCORE=15K   
,
i get below B messages. As i undestand, there is max of 8196K available below 16M and 7,936K available above 16M.
Which space does SYNCSORT prefer first among 8196K and 7,936K.
Please clarify.

Code:
SYNCSORT FOR Z/OS  1.3.0.2R 
WER164B  8,196K BYTES OF VIRTUAL STORAGE AVAILABLE, MAX
REQUESTED,
WER164B     0 BYTES RESERVE REQUESTED, 272K BYTES USED             
 WER410B  7,936K BYTES OF VIRTUAL STORAGE AVAILABLE ABOVE THE 16MEG LINE,     
 WER410B     0 BYTES RESERVE REQUESTED, 156K BYTES USED                       
Back to top
View user's profile Send private message
krisprems

Active Member


Joined: 27 Nov 2006
Posts: 649
Location: India

PostPosted: Wed Dec 16, 2009 3:01 pm
Reply with quote

Yes, ur understanding seems to be correct, however here is the explanation of the message codes:

Quote:
WER410B XXX BYTES OF VIRTUAL STORAGE AVAILABLE ABOVE
16MEG LINE,
YYY BYTES RESERVE REQUESTED, ZZZ BYTES USED
EXPLANATION: The amount of virtual storage
above the 16-megabyte line available (free)
when SyncSort received control is represented
by x's. The amount of virtual storage that the
user requested SyncSort to reserve above the
16-megabyte line is represented by y's. The
amount of virtual storage used by SyncSort
above the 16-megabyte line is represented by
z's.




Quote:
WER164B WWW BYTES OF VIRTUAL STORAGE AVAILABLE, XXX
BYTES REQUESTED, YYY BYTES RESERVE REQUESTED,
ZZZ BYTES USED
EXPLANATION: The amount of virtual storage
available (free) when SyncSort received control
is represented by w's. The amount of virtual
storage requested for SyncSort's use is repres-
ented by x's. The amount of virtual storage
that the user requested SyncSort to reserve be-
low the 16-megabyte line is represented by y's.
The amount of virtual storage used by SyncSort
is represented by z's. For XA systems, this
message reflects the total amount of virtual
storage below and above the 16-megabyte line
thas was available to SyncSort and used by
SyncSort.


Quote:
WER410B XXX BYTES OF VIRTUAL STORAGE AVAILABLE ABOVE
16MEG LINE,
YYY BYTES RESERVE REQUESTED, ZZZ BYTES USED
EXPLANATION: The amount of virtual storage
above the 16-megabyte line available (free)
when SyncSort received control is represented
by x's. The amount of virtual storage that the
user requested SyncSort to reserve above the
16-megabyte line is represented by y's. The
amount of virtual storage used by SyncSort
above the 16-megabyte line is represented by
z's.
Back to top
View user's profile Send private message
chandramouliravi

New User


Joined: 27 Apr 2009
Posts: 26
Location: addison

PostPosted: Wed Dec 16, 2009 4:09 pm
Reply with quote

Hi krisprems,

Why is Syncsort having separate space aboeve and below 16M.
Why cant it have a single storage. I dont understand what is significance 16M?


Thanks,
Chandra mouli
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Wed Dec 16, 2009 4:26 pm
Reply with quote

On the mainframe, storage can be allocated either above or below "the line".

"The line" means the point at which memory addresses require four bytes of storage to hold them rather than three bytes - that is, addresses above 16Mb. The mainframe is limited to 31-bit addressing, but pointer variables are always 32 bits long and the unused bits are available for use by user programs. The format of these pointer variables on the mainframe is different to that native to the Intel PC platform.
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Wed Dec 16, 2009 4:32 pm
Reply with quote

On the other hand, a message of tyoe B (and C, D & I) are informational messages, so you should not be worried.

'B' messages are helpful in tuning specific applications. Some times they are not enabled as an installation default, then BMSG can be specified as a runtime parameter... and this is evident from what Krisprems has posted.
Back to top
View user's profile Send private message
chandramouliravi

New User


Joined: 27 Apr 2009
Posts: 26
Location: addison

PostPosted: Wed Dec 16, 2009 4:37 pm
Reply with quote

post edited to remove improper content...

requesting private communications
posting an eMail address

for private communications use the forum PM facility
Back to top
View user's profile Send private message
PeterHolland

Global Moderator


Joined: 27 Oct 2009
Posts: 2481
Location: Netherlands, Amstelveen

PostPosted: Wed Dec 16, 2009 4:38 pm
Reply with quote

Chapter 3 of "Principles of Operation" will give all info on
addresses.
Back to top
View user's profile Send private message
Garry Carroll

Senior Member


Joined: 08 May 2006
Posts: 1193
Location: Dublin, Ireland

PostPosted: Wed Dec 16, 2009 5:00 pm
Reply with quote

Quote:
The mainframe is limited to 31-bit addressing, but pointer variables are always 32 bits long and the unused bits are available for use by user programs.


And what about AMODE(64) - addresses above the 'bar' where pointers are 64bits ? The reason for 31-bit addressing rather than 32 bit was for compatibility reasons. The "unused" bit is used in the PSW to indicate the current AMODE. When moving to AMODE(64), the low-order bit is used to indicate AMODE.

If the low-order bit is 'on' the program is running AMODE(64) and all other bits in the PSW are part of the address. If the low-order bit is 'off' the program may be running in AMODE(31) or AMODE(24), depending on the setting of the high-order bit. If the high-order bit is 'on', the program is running in AMODE(31) whereas if it is 'off' the program is running in AMODE(24).

Garry.
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Thu Dec 24, 2009 4:55 pm
Reply with quote

Thanks Garry - I completely missed that 64-bit thing... icon_redface.gif. Was reading and I could read to chapters which explains about 31-bit things by the time i replied in...icon_wink.gif
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 Compare only first records of the fil... SYNCSORT 7
This topic is locked: you cannot edit posts or make replies. how can I proof that message was post... Java & MQSeries 1
No new posts IMS Message : DFS3577A IMS DB/DC 4
No new posts Mainframe Programmer with CICS Skill... Mainframe Jobs 0
No new posts Help needed to assemble IMS sample co... ABENDS & Debugging 4
Search our Forums:

Back to Top