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

CYLINDERS PARAMETER while defining VSAM


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

New User


Joined: 07 Dec 2003
Posts: 56
Location: Montreal

PostPosted: Wed Apr 02, 2008 12:19 am
Reply with quote

Hi,

Following is the way a VSAM is getting defined. Please note the 'CYLINDERS' parameter. In the subsequent step this VSAM will be loaded with the data which requires about 6000 cylinders for data component and 17 cylinders for the index.

My question : Is it advisible to update the CYLINDERS parameter for the Data and Index component for the VSAM defined below to improve the performance of the subsequent step which is adding the data worth 6000 cylinders to this VSAM? Thanks for your time.

DEFINE CLUSTER(NAME(NBCV.TEST.UCM) -
DATACLAS(EXTEND) -
INDEXED -
UNIQUE -
CONTROLINTERVALSIZE(4096) -
RECSZ(40,40) -
KEYS(28 0)) -
DATA(NAME(NBCV.TEST.UCM.DATA) -
CYLINDERS(200 200) -
VOLUMES(*,*,*,*,*,*,*,*,*,*,*,*,*,*) -
CISZ(8192)) -
INDEX(NAME(NBCV.TEST.UCM.INDEX) -
VOLUMES(*,*,*,*,*,*,*,*,*,*,*,*,*,*) -
CISZ(512) -
CYL(3 2))
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Wed Apr 02, 2008 11:38 am
Reply with quote

The ability to allocate 6000 cylinders depends on the device geometry and may also be affected if you are using extended format VSAM data striping in your SMS routines.

If you use 3390-3 which has about 3330 usable cylinders, then code, 3000 and use additional volumes
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 Access to non cataloged VSAM file JCL & VSAM 18
No new posts Allocated cylinders of a dataset DB2 12
No new posts Merge two VSAM KSDS files into third ... JCL & VSAM 6
No new posts Using the Jobname parameter in a Qual... ABENDS & Debugging 1
No new posts CVDA value for RRDS VSAM dataset. CICS 2
Search our Forums:

Back to Top