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

When is VSCORE used in Syncsort


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: Sat Dec 05, 2009 2:06 pm
Reply with quote

Hi,

I saw the topic on VSCORE and VSCORET. Could you please clarify below questions on that.

1) When we have below code in MAXSORT. Does these WORK datasets use space declared by VSCORE and VSCORET?
Code:
//SORTWK01 DD SPACE=(CYL,(&SRTSPC)),DSN=&&TEMP1,
//                       DISP=(NEW,PASS)
//SORTWK02 DD SPACE=(CYL,(&SRTSPC)),DSN=&&TEMP2,
//                       DISP=(NEW,PASS)
//SORTWK03 DD SPACE=(CYL,(&SRTSPC)),DSN=&&TEMP3,
//                       DISP=(NEW,PASS)


2) In Sort, Is Region parameter space considered before using VSCORE specified space?

3) Maxsort uses disk space first and then tape space for sorting.
Does disk space mean space specified in VSCORET?

4) When ever we say SORT uses temporary memory during Sorting, does
it refer to "virtual storage below the 16-megabyte line"?
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


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

PostPosted: Mon Dec 07, 2009 4:18 pm
Reply with quote

Quote:
When is VSCORE used in Syncsort

The VSCORE option allows you to set the maximum amount of virtual storage below the 16-megabyte line that SyncSort can use for its working set.

The VSCORET option allows you to set the maximum amount of virtual storage below AND above the 16-megabyte line that SyncSort can use for its working set when SyncSort’s Dynamic Storage Management (DSM) facility is inactive.

When DSM is active, VSCORET is treated as an initial recommendation. The VSCORET value cannot be less than the value set in the VSCORE option.
Back to top
View user's profile Send private message
Bill Dennis

Active Member


Joined: 17 Aug 2007
Posts: 562
Location: Iowa, USA

PostPosted: Mon Dec 07, 2009 10:05 pm
Reply with quote

REGION, VSCORE and VSCORET all refer to internal memory storage working space. The SORTWKxx files use external storage based on the SPACE parameter provided.

When sorting,
- internal memory is used first, in case the file is small
- SORTWKxx space is used when internal memory is insufficient
- tape is used for intermediate file storage on MAXSORT when SORTWKxx is insufficient
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 12:19 pm
Reply with quote

Hi Dennis,

Thanks for the clarification. Sorry for my late reply.
I am searching the forum for other discussion on these parms to ask right questions. I am using SYNCSORT 1.3.0.2R

How do we calculate what is the Optimal value we can give for VSCORE and VSCORET?

How much internal storage is available. Is it above 16M or below 16M? This may be vary as i guess.

I saw that all REGION, VSCORE, VSCORET refer to internal memmory.
I wonder why do we need VSCORE and VSCORET separately.
Why dont we have single parameter like VSCORE, where we can say what is the value we want?


How does CORE=MAX differ from VSCORE and VSCORET? Does any parm has priority over other?

[/b]
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
No new posts Count Records with a crietaria in a f... DFSORT/ICETOOL 5
No new posts DFSORT/SYNCSORT/ICETOOL JCL & VSAM 8
No new posts Syncsort "Y2C" Function SYNCSORT 1
No new posts Arithmetic division using Syncsort SYNCSORT 6
Search our Forums:

Back to Top